GP-3508 Fix for calcHash methods 5 and 6

This commit is contained in:
caheckman 2023-05-30 15:39:19 -04:00
parent aa2ac78dc3
commit 050d3018c8
2 changed files with 10 additions and 0 deletions

View file

@ -236,6 +236,8 @@ void DynamicHash::calcHash(const PcodeOp *op,int4 slot,uint4 method)
buildOpUp(markop[opproc]);
}
gatherUnmarkedVn();
for(;vnproc<markvn.size();++vnproc)
buildVnUp(markvn[vnproc]);
break;
case 6:
gatherUnmarkedOp();
@ -243,6 +245,8 @@ void DynamicHash::calcHash(const PcodeOp *op,int4 slot,uint4 method)
buildOpDown(markop[opproc]);
}
gatherUnmarkedVn();
for(;vnproc<markvn.size();++vnproc)
buildVnDown(markvn[vnproc]);
break;
default:
break;