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