]> git.proxmox.com Git - qemu.git/blobdiff - target-ppc/op.c
use the TCG code generator
[qemu.git] / target-ppc / op.c
index c950579a1b536d07966b5ee8c86f4b2b2645e45a..6cda0f0f64fb2a1016d5b662b6bb9dc940a3eb3c 100644 (file)
@@ -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);