From: bellard Date: Sun, 9 Nov 2003 14:42:54 +0000 (+0000) Subject: ppc fix X-Git-Tag: release_0_5_1~60 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e58143b3550f08254118995c667adefc64f2cc20;p=thirdparty%2Fqemu.git ppc fix git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@442 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/target-sparc/op.c b/target-sparc/op.c index d3656616437..65922aa7764 100644 --- a/target-sparc/op.c +++ b/target-sparc/op.c @@ -480,9 +480,9 @@ void OPPROTO op_restore_T0 (void) void OPPROTO op_generic_branch (void) { if (T0) - JUMP_TB (__func__, PARAM1, 0, PARAM2); + JUMP_TB (op_generic_branch, PARAM1, 0, PARAM2); else - JUMP_TB (__func__, PARAM1, 1, PARAM3); + JUMP_TB (op_generic_branch, PARAM1, 1, PARAM3); FORCE_RET (); } @@ -491,10 +491,6 @@ void OPPROTO op_generic_branch_a (void) if (T0) env->npc = PARAM3; else - JUMP_TB (__func__, PARAM1, 0, PARAM2); + JUMP_TB (op_generic_branch_a, PARAM1, 0, PARAM2); FORCE_RET (); } - -void OPPROTO op_noop (void) -{ -}