diff options
Diffstat (limited to 'src/inputhud.c')
-rw-r--r-- | src/inputhud.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inputhud.c b/src/inputhud.c index 2620f3c..fbcbe79 100644 --- a/src/inputhud.c +++ b/src/inputhud.c @@ -151,7 +151,7 @@ static inline int bsf(uint x) { // a false dependency on many CPUs, which compilers don't understand somehow int ret = 0; #if defined(__GNUC__) || defined(__clang__) - __asm__ volatile ( + __asm volatile ( "bsf %0, %1\n" : "+r" (ret) : "r" (x) |