GP-2515 LoadGuard segment support

This commit is contained in:
caheckman 2022-09-01 15:06:27 -04:00
parent 0ee8c799b1
commit 8cae54c18b

View file

@ -973,6 +973,11 @@ bool Heritage::discoverIndexedStackPointers(AddrSpace *spc,vector<PcodeOp *> &fr
}
break;
}
case CPUI_SEGMENTOP:
{
if (op->getIn(2) != curNode.vn) break; // Check that stackpointer comes in as inner pointer
// Treat output as having the same offset, fallthru to COPY
}
case CPUI_INDIRECT:
case CPUI_COPY:
{