From: Stuart B. <zu...@us...> - 2007-03-21 21:17:57
|
Update of /cvsroot/hppaqemu/hppaqemu/target-hppa In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv9083 Modified Files: op.c Log Message: Fix bug in op_goto_tb1() (passed the wrong TB number to GOTO_TB). Index: op.c =================================================================== RCS file: /cvsroot/hppaqemu/hppaqemu/target-hppa/op.c,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- op.c 16 Mar 2007 21:33:42 -0000 1.26 +++ op.c 21 Mar 2007 21:17:50 -0000 1.27 @@ -741,7 +741,7 @@ void OPPROTO op_goto_tb1(void) { - GOTO_TB(op_goto_tb1, PARAM1, 0); + GOTO_TB(op_goto_tb1, PARAM1, 1); } void OPPROTO op_exit_tb(void) |