mirror of
https://github.com/simh/simh.git
synced 2026-05-02 14:20:05 +00:00
PDP11: Only compute vector ilvl when it will be used (Coverity)
This commit is contained in:
@@ -324,8 +324,8 @@ dibp->dptr = dptr; /* save back pointer */
|
|||||||
if (dibp->vnum > VEC_DEVMAX)
|
if (dibp->vnum > VEC_DEVMAX)
|
||||||
return SCPE_IERR;
|
return SCPE_IERR;
|
||||||
vec = dibp->vec;
|
vec = dibp->vec;
|
||||||
ilvl = dibp->vloc / 32;
|
|
||||||
#if (VEC_SET != 0)
|
#if (VEC_SET != 0)
|
||||||
|
ilvl = dibp->vloc / 32;
|
||||||
ibit = dibp->vloc % 32;
|
ibit = dibp->vloc % 32;
|
||||||
if (vec)
|
if (vec)
|
||||||
vec |= (int_vec_set[ilvl][ibit] & ~3);
|
vec |= (int_vec_set[ilvl][ibit] & ~3);
|
||||||
@@ -346,8 +346,8 @@ if (vec && !(sim_switches & SWMASK ('P'))) {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
cdvec = cdibp->vec;
|
cdvec = cdibp->vec;
|
||||||
ilvl = cdibp->vloc / 32;
|
|
||||||
#if (VEC_SET != 0)
|
#if (VEC_SET != 0)
|
||||||
|
ilvl = cdibp->vloc / 32;
|
||||||
ibit = cdibp->vloc % 32;
|
ibit = cdibp->vloc % 32;
|
||||||
if (cdvec)
|
if (cdvec)
|
||||||
cdvec |= (int_vec_set[ilvl][ibit] & ~3);
|
cdvec |= (int_vec_set[ilvl][ibit] & ~3);
|
||||||
|
|||||||
Reference in New Issue
Block a user