kernel32/tests: Fix floating-point status register size on ARM64.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2020-11-26 23:16:41 +01:00
parent 3bf2e5230a
commit c36f580cc4
1 changed files with 1 additions and 1 deletions

View File

@ -1840,7 +1840,7 @@ static inline unsigned long get_fpu_cw(void)
#endif
return MAKELONG( cw, sse );
#elif defined(__aarch64__)
unsigned long cw;
ULONG_PTR cw;
__asm__ __volatile__( "mrs %0, fpcr" : "=r" (cw) );
return cw;
#else