msvcrt: Fix _libm_sse2_sqrt_precise not using SSE2 sqrt.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=56824
This commit is contained in:
Fabian Maurer 2024-06-12 19:02:22 +02:00 committed by Alexandre Julliard
parent 1163e39937
commit 77f3c0826a

View file

@ -2568,7 +2568,7 @@ void __cdecl __libm_sse2_sqrt_precise(void)
__asm__ __volatile__( "movq %0,%%xmm0" : : "m" (d) ); __asm__ __volatile__( "movq %0,%%xmm0" : : "m" (d) );
return; return;
} }
__asm__ __volatile__( "call " __ASM_NAME( "asm_sqrt" ) ); __asm__ __volatile__( "sqrtsd %xmm0, %xmm0" );
} }
#endif /* __i386__ */ #endif /* __i386__ */