From a9340dd325c1baa3714a0e08f4bf6ee6f69d0c30 Mon Sep 17 00:00:00 2001 From: Christian Jullien Date: Wed, 26 Jun 2019 05:26:20 +0200 Subject: [PATCH] Applying grischka proposed patch fixes error reported on 93_integer_promotion test as found on Debian buster / gcc 8.3 for ARM plateform --- tccgen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tccgen.c b/tccgen.c index b3123df7..69712858 100644 --- a/tccgen.c +++ b/tccgen.c @@ -5914,6 +5914,7 @@ static void expr_cond(void) tt = gjmp(0); } gsym(u); + nocode_wanted = ncw_prev; /* this is horrible, but we must also convert first operand */ @@ -5937,7 +5938,6 @@ static void expr_cond(void) if (islv) indir(); } - nocode_wanted = ncw_prev; } }