I1401: Compiler warning cleanup

Initialize local state variables to 0.  Likely non functional changes due
to lack of depth in static analysis scan.  Coverity detects real problems
like this.
This commit is contained in:
Mark Pizzolato 2020-10-19 12:28:41 -07:00
parent 962552b213
commit 1e46a14ba7

View file

@ -522,7 +522,7 @@ static const int32 mtf_mod[] = {
t_stat sim_instr (void)
{
int32 IS, ilnt, flags;
int32 op, xa, t, wm, ioind, dev, unit;
int32 op, xa, t, wm, ioind = 0, dev = 0, unit = 0;
int32 a, b, i, k, asave, bsave;
int32 carry, lowprd, sign, ps;
int32 quo, qs;