From: Johan Bengtsson Date: Wed, 17 Mar 2010 12:56:07 +0000 (+0100) Subject: target-arm: Fix handling of AL condition in IT instruction X-Git-Tag: v0.13.0-rc0~981 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bedd2912c83b1a87a6bfe3f59a892fd65cda7084;p=thirdparty%2Fqemu.git target-arm: Fix handling of AL condition in IT instruction Do not try to insert a conditional jump over next instruction when the condition code is AL as this will trigger an internal error. Signed-off-by: Johan Bengtsson Signed-off-by: Aurelien Jarno --- diff --git a/target-arm/translate.c b/target-arm/translate.c index cdfe946a6d3..3b84c1dabd2 100644 --- a/target-arm/translate.c +++ b/target-arm/translate.c @@ -8336,9 +8336,11 @@ static void disas_thumb_insn(CPUState *env, DisasContext *s) if (s->condexec_mask) { cond = s->condexec_cond; - s->condlabel = gen_new_label(); - gen_test_cc(cond ^ 1, s->condlabel); - s->condjmp = 1; + if (cond != 0x0e) { /* Skip conditional when condition is AL. */ + s->condlabel = gen_new_label(); + gen_test_cc(cond ^ 1, s->condlabel); + s->condjmp = 1; + } } insn = lduw_code(s->pc);