diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-02-01 10:50:11 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-02-01 10:50:11 +0000 |
commit | 57fec1fee94aa9f7d2519e8c354f100fc36bc9fa (patch) | |
tree | dd3381d7ab3c77532719ea9366782b27f09bfc87 /target-ppc/op.c | |
parent | c896fe29d6c8ae6cde3917727812ced3f2e536a4 (diff) |
use the TCG code generator
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3944 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/op.c')
-rw-r--r-- | target-ppc/op.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/target-ppc/op.c b/target-ppc/op.c index c950579a1b..6cda0f0f64 100644 --- a/target-ppc/op.c +++ b/target-ppc/op.c @@ -222,11 +222,6 @@ void OPPROTO op_debug (void) do_raise_exception(EXCP_DEBUG); } -void OPPROTO op_exit_tb (void) -{ - EXIT_TB(); -} - /* Load/store special registers */ void OPPROTO op_load_cr (void) { @@ -674,16 +669,6 @@ void OPPROTO op_setlr_64 (void) } #endif -void OPPROTO op_goto_tb0 (void) -{ - GOTO_TB(op_goto_tb0, PARAM1, 0); -} - -void OPPROTO op_goto_tb1 (void) -{ - GOTO_TB(op_goto_tb1, PARAM1, 1); -} - void OPPROTO op_b_T1 (void) { env->nip = (uint32_t)(T1 & ~3); |