1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

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) );
return;
}
__asm__ __volatile__( "call " __ASM_NAME( "asm_sqrt" ) );
__asm__ __volatile__( "sqrtsd %xmm0, %xmm0" );
}
#endif /* __i386__ */