diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-08-01 22:02:20 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-08-01 22:02:20 +0000 |
commit | 02c8460a7428b9721d8784bc320f045d022ce699 (patch) | |
tree | 79dd79290dcf239fb2831a5d4dcf3ff3ad70b49d /lib/Target/ARM/ARMInstrThumb.td | |
parent | b2756afa273b548d950b612f4e936b46e82c1f13 (diff) |
Move imm0_255 to ARMInstrInfo.td with the other immediate predicates.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136656 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMInstrThumb.td')
-rw-r--r-- | lib/Target/ARM/ARMInstrThumb.td | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/Target/ARM/ARMInstrThumb.td b/lib/Target/ARM/ARMInstrThumb.td index 19182db109..64e5e443df 100644 --- a/lib/Target/ARM/ARMInstrThumb.td +++ b/lib/Target/ARM/ARMInstrThumb.td @@ -30,10 +30,6 @@ def imm0_7_neg : PatLeaf<(i32 imm), [{ return (uint32_t)-N->getZExtValue() < 8; }], imm_neg_XFORM>; -def imm0_255_asmoperand : AsmOperandClass { let Name = "Imm0_255"; } -def imm0_255 : Operand<i32>, ImmLeaf<i32, [{ return Imm >= 0 && Imm < 256; }]> { - let ParserMatchClass = imm0_255_asmoperand; -} def imm0_255_comp : PatLeaf<(i32 imm), [{ return ~((uint32_t)N->getZExtValue()) < 256; }]>; |