mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-15 09:36:35 +00:00
thermosphere: forgot compiler barrier in get_sysreg
This commit is contained in:
parent
63e3f40fa5
commit
c67ff366ea
1 changed files with 3 additions and 3 deletions
|
@ -447,7 +447,7 @@
|
||||||
|
|
||||||
#define GET_SYSREG(r) ({\
|
#define GET_SYSREG(r) ({\
|
||||||
u64 __val; \
|
u64 __val; \
|
||||||
asm volatile("mrs %0, " STRINGIZE(r) : "=r" (__val)); \
|
__asm__ __volatile__("mrs %0, " STRINGIZE(r) : "=r" (__val) :: "memory"); \
|
||||||
__val; \
|
__val; \
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue