This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: PATCH: target/23360: -ffast-math startup broken on i686 (maybe Athlon-xp)


On Sat, Aug 13, 2005 at 04:09:09PM -0700, H. J. Lu wrote:
> +	  asm volatile ("fxsave %0" : : "m" (fxsave));

This is incorrect.  It should be

	asm volatile ("fxsave %0" : "=m" (fxsave) : "m" (fxsave));


r~


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]