diff options
Diffstat (limited to 'tests/tcg/cris/check_lz.c')
-rw-r--r-- | tests/tcg/cris/check_lz.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tcg/cris/check_lz.c b/tests/tcg/cris/check_lz.c index 69c2e6d4ec..bf051a6b55 100644 --- a/tests/tcg/cris/check_lz.c +++ b/tests/tcg/cris/check_lz.c @@ -3,7 +3,7 @@ #include <stdint.h> #include "sys.h" -static inline int cris_lz(int x) +static always_inline int cris_lz(int x) { int r; asm ("lz\t%1, %0\n" : "=r" (r) : "r" (x)); |