ARM: Inst writing to cntrlReg registers not set as control inst

Deletion of the fact that instructions that writes to registers of type
"cntrlReg" are not set as control instruction (flag IsControl not set).
This commit is contained in:
Nathanael Premillieu
2012-09-25 11:49:40 -05:00
parent 04ca96427c
commit bfffbb6797

View File

@@ -118,7 +118,7 @@ let {{
return ('IntReg', 'uw', idx, None, srtNormal)
def cntrlReg(idx, id = srtNormal, type = 'uw'):
return ('ControlReg', type, idx, (None, None, 'IsControl'), id)
return ('ControlReg', type, idx, None, id)
def cntrlRegNC(idx, id = srtNormal, type = 'uw'):
return ('ControlReg', type, idx, None, id)