From fa3c6acca7d703e6108d2d931b8ade7a4c1485c2 Mon Sep 17 00:00:00 2001 From: Richard Cornwell Date: Sun, 11 Aug 2019 00:40:12 -0400 Subject: [PATCH] I7000: Fixed Coverity error. --- I7000/i7080_cpu.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/I7000/i7080_cpu.c b/I7000/i7080_cpu.c index 7d7f802..50d82bc 100644 --- a/I7000/i7080_cpu.c +++ b/I7000/i7080_cpu.c @@ -2976,10 +2976,8 @@ step6: Next(MA); sim_interval --; /* count down */ cr2 = AC[tsac]; - if (cr2 == 0) { - smt = 1; /* Check usage here */ - break; /* goto step6; */ - } + if (cr2 == 0) + goto step6; if (at) { cr1 &= 017; at = 0;