Commit a85427b1 authored by Thiemo Seufer's avatar Thiemo Seufer
Browse files

Small code generation optimization.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2672 c046a42c-6fe2-441c-8c8c-71466251a162
parent fff739cc
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -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:
            break;
	}
            gen_op_reset_T0();
            /* Generate the return instruction. */
            gen_op_exit_tb();
            break;
	}
    }
done_generating:
    *gen_opc_ptr = INDEX_op_end;