*/
boolean needsStall = false;
for (int i = 5; i<7; i++) {
PipelineLatch otherLatch = SimUtils.getLatchAt(i);
if (otherLatch != null) {
Instruction otherInst = otherLatch.Inst;
if ((otherInst.name == InstName.LD) && (this.Inst.src1 != null)
&& (otherInst.dest.RegRef == this.Inst.src1.RegRef)) {
needsStall = true;
break;
} else if ((otherInst.name == InstName.LD) && (this.Inst.src2 != null)