Skip to content

Commit 0940b17

Browse files
committed
Fixes #22
1 parent 90648bc commit 0940b17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uiCA.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1572,7 +1572,7 @@ def getInstructions(disas, uArchConfig: MicroArchConfig, archData, alignmentOffs
15721572
allMemOperands = instrD['memOperands'].items()
15731573
for inpN, inpM in allMemOperands:
15741574
for reg, addrType in [(inpM.get('base'), 'addr'), (inpM.get('index'), 'addrI')]:
1575-
if (reg is None) or ('IP' in reg): continue
1575+
if (reg is None): continue
15761576
regOp = RegOperand(reg)
15771577
if (reg == 'RSP') and implicitRSPChange and (len(allMemOperands) == 1 or inpN == 'MEM1'):
15781578
regOp.isImplicitStackOperand = True

0 commit comments

Comments
 (0)