glide2x,cvg,fpu.c: change movw to movl in double_precision_asm()

Otherwise we get the following warnings: (some compilers error.)

Assembler messages:
Warning: using `%ax' instead of `%eax' due to `w' suffix
This commit is contained in:
sezero
2018-08-17 23:35:02 +03:00
parent 23b0364245
commit eeb8c98bb9

View File

@@ -63,10 +63,10 @@ void double_precision_asm()
asm("push %eax\n"
"fnclex\n"
"fstcw (%esp)\n"
"movw (%esp), %eax\n"
"movl (%esp), %eax\n"
"and $0x0000fcff, %eax\n"
"or $0x000002ff, %eax\n"
"mov %eax, (%esp)\n"
"movl %eax, (%esp)\n"
"fldcw (%esp)\n"
"pop %eax");
#else
@@ -79,4 +79,3 @@ void double_precision_asm()
{
}
#endif