aboutsummaryrefslogtreecommitdiff
path: root/tcg/tcg.h
diff options
context:
space:
mode:
Diffstat (limited to 'tcg/tcg.h')
-rw-r--r--tcg/tcg.h17
1 files changed, 1 insertions, 16 deletions
diff --git a/tcg/tcg.h b/tcg/tcg.h
index a3c9de9..bc5b902 100644
--- a/tcg/tcg.h
+++ b/tcg/tcg.h
@@ -413,24 +413,9 @@ uint64_t tcg_helper_divu_i64(uint64_t arg1, uint64_t arg2);
uint64_t tcg_helper_remu_i64(uint64_t arg1, uint64_t arg2);
extern uint8_t code_gen_prologue[];
-#ifdef __powerpc__
-#ifdef __powerpc64__
-#define tcg_qemu_tb_exec(tb_ptr) \
- ({ unsigned long p; \
- asm volatile ( \
- "mtctr %1\n\t" \
- "mr 3,%2\n\t" \
- "bctrl\n\t" \
- "mr %0,3\n\t" \
- : "=r" (p) \
- : "r" (code_gen_prologue), "r" (tb_ptr) \
- : "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"); \
- p; \
- })
-#else
+#if defined(__powerpc__) && !defined(__powerpc64__)
#define tcg_qemu_tb_exec(tb_ptr) \
((long REGPARM __attribute__ ((longcall)) (*)(void *))code_gen_prologue)(tb_ptr)
-#endif
#else
#define tcg_qemu_tb_exec(tb_ptr) ((long REGPARM (*)(void *))code_gen_prologue)(tb_ptr)
#endif