generalized use of GOTO_TB() macro

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1207 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2005-01-09 00:07:04 +00:00
parent 8636b5d873
commit ae063a68dc
3 changed files with 27 additions and 47 deletions

View file

@ -1262,12 +1262,12 @@ void OPPROTO op_clts(void)
void OPPROTO op_goto_tb0(void)
{
GOTO_TB(op_goto_tb0, 0);
GOTO_TB(op_goto_tb0, PARAM1, 0);
}
void OPPROTO op_goto_tb1(void)
{
GOTO_TB(op_goto_tb1, 1);
GOTO_TB(op_goto_tb1, PARAM1, 1);
}
void OPPROTO op_jmp_label(void)