diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-09-23 01:31:15 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-09-23 01:31:15 +0200 |
commit | f391533f6715a47dd2c71aff9615d8fc20a7bbb8 (patch) | |
tree | 22ba3549a94b57cc3fa72802c3464cd0423b173d /i386 | |
parent | 7c107da5f0b7397eea37f5fb77d4afac8f6e93c7 (diff) | |
download | gnumach-f391533f6715a47dd2c71aff9615d8fc20a7bbb8.tar.gz gnumach-f391533f6715a47dd2c71aff9615d8fc20a7bbb8.tar.bz2 gnumach-f391533f6715a47dd2c71aff9615d8fc20a7bbb8.zip |
i386/i386/fpu.h: Drop spurious backslashes
Diffstat (limited to 'i386')
-rw-r--r-- | i386/i386/fpu.h | 8 |
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)) |