Commit c36f580c authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 3bf2e523
...@@ -1840,7 +1840,7 @@ static inline unsigned long get_fpu_cw(void) ...@@ -1840,7 +1840,7 @@ static inline unsigned long get_fpu_cw(void)
#endif #endif
return MAKELONG( cw, sse ); return MAKELONG( cw, sse );
#elif defined(__aarch64__) #elif defined(__aarch64__)
unsigned long cw; ULONG_PTR cw;
__asm__ __volatile__( "mrs %0, fpcr" : "=r" (cw) ); __asm__ __volatile__( "mrs %0, fpcr" : "=r" (cw) );
return cw; return cw;
#else #else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment