summaryrefslogtreecommitdiff
path: root/src/runtime/c/pgf/lightning/arm
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2014-10-14 09:09:26 +0000
committerkr.angelov <kr.angelov@gmail.com>2014-10-14 09:09:26 +0000
commit1c2e02ad5026e92ac9b82c6c876bde4281754f21 (patch)
treec49c962074286290ec138cb281266f4fb64def35 /src/runtime/c/pgf/lightning/arm
parent2b881397c554d9aa17877c9686bf3bbfd6f4020f (diff)
simplify jit_bare_ret
Diffstat (limited to 'src/runtime/c/pgf/lightning/arm')
-rw-r--r--src/runtime/c/pgf/lightning/arm/core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/c/pgf/lightning/arm/core.h b/src/runtime/c/pgf/lightning/arm/core.h
index a84c1d05e..02b3c6431 100644
--- a/src/runtime/c/pgf/lightning/arm/core.h
+++ b/src/runtime/c/pgf/lightning/arm/core.h
@@ -2174,9 +2174,9 @@ next: \
#endif
#ifdef USE_THUMB_CODE
-#define jit_bare_ret(IM) T2_POP(1<<JIT_PC)
+#define jit_bare_ret() T2_POP(1<<JIT_PC)
#else
-#define jit_bare_ret(IM) _POP(1<<JIT_PC)
+#define jit_bare_ret() _POP(1<<JIT_PC)
#endif
/* just to pass make check... */