aboutsummaryrefslogtreecommitdiff
path: root/i386
diff options
context:
space:
mode:
Diffstat (limited to 'i386')
-rw-r--r--i386/i386/fpu.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/i386/i386/fpu.h b/i386/i386/fpu.h
index a7d8bade..02b67066 100644
--- a/i386/i386/fpu.h
+++ b/i386/i386/fpu.h
@@ -111,25 +111,25 @@ static inline void set_xcr0(uint64_t value) {
asm volatile("xsave %0" \
: "=m" (*state) \
: "a" ((unsigned) fp_xsave_support) \
- , "d" ((unsigned) (fp_xsave_support >> 32))) \
+ , "d" ((unsigned) (fp_xsave_support >> 32)))
#define xsaveopt(state) \
asm volatile("xsaveopt %0" \
: "=m" (*state) \
: "a" ((unsigned) fp_xsave_support) \
- , "d" ((unsigned) (fp_xsave_support >> 32))) \
+ , "d" ((unsigned) (fp_xsave_support >> 32)))
#define xsavec(state) \
asm volatile("xsavec %0" \
: "=m" (*state) \
: "a" ((unsigned) fp_xsave_support) \
- , "d" ((unsigned) (fp_xsave_support >> 32))) \
+ , "d" ((unsigned) (fp_xsave_support >> 32)))
#define xsaves(state) \
asm volatile("xsaves %0" \
: "=m" (*state) \
: "a" ((unsigned) fp_xsave_support) \
- , "d" ((unsigned) (fp_xsave_support >> 32))) \
+ , "d" ((unsigned) (fp_xsave_support >> 32)))
#define xrstor(state) \
asm volatile("xrstor %0" : : "m" (state))