提交 a85427b1 编写于 作者: T ths

Small code generation optimization.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2672 c046a42c-6fe2-441c-8c8c-71466251a162
上级 fff739cc
......@@ -5238,6 +5238,9 @@ gen_intermediate_code_internal (CPUState *env, TranslationBlock *tb,
switch (ctx.bstate) {
case BS_EXCP:
gen_op_interrupt_restart();
gen_op_reset_T0();
/* Generate the return instruction. */
gen_op_exit_tb();
break;
case BS_STOP:
gen_op_interrupt_restart();
......@@ -5248,11 +5251,11 @@ gen_intermediate_code_internal (CPUState *env, TranslationBlock *tb,
break;
case BS_BRANCH:
default:
gen_op_reset_T0();
/* Generate the return instruction. */
gen_op_exit_tb();
break;
}
gen_op_reset_T0();
/* Generate the return instruction. */
gen_op_exit_tb();
}
done_generating:
*gen_opc_ptr = INDEX_op_end;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册