From bfffbb67976fc4a01185e36c8eaf755454cf19a5 Mon Sep 17 00:00:00 2001 From: Nathanael Premillieu Date: Tue, 25 Sep 2012 11:49:40 -0500 Subject: 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). --- src/arch/arm/isa/operands.isa | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/arch/arm') diff --git a/src/arch/arm/isa/operands.isa b/src/arch/arm/isa/operands.isa index 62684f5af..64deef044 100644 --- a/src/arch/arm/isa/operands.isa +++ b/src/arch/arm/isa/operands.isa @@ -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) -- cgit v1.2.3