On 08/28/2014 01:44 PM, Jaume Marti Farriol wrote: > -void helper_fstenv(CPUX86State *env, target_ulong ptr, int data32) > +void helper_fstenv(CPUX86State *env, target_ulong ptr, int data32, > + int protected_mode)
You ought not need two arguments here. All of the formats are mutually exclusive, so can be encoded into a single argument, replacing data32. r~