Commit bd9cdb3b authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

ntdll: Mark 'float_status' as input operand in save_fpu().

parent a3af1673
......@@ -879,7 +879,7 @@ static inline void save_fpu( CONTEXT *context )
memcpy(&float_status, &context->FloatSave, sizeof(float_status));
float_status.StatusWord &= float_status.ControlWord | 0xffffff80;
__asm__ __volatile__( "fldenv %0" : "=m" (float_status) );
__asm__ __volatile__( "fldenv %0" : : "m" (float_status) );
#endif
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment