summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMInstrThumb.td
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2011-08-01 22:02:20 +0000
committerJim Grosbach <grosbach@apple.com>2011-08-01 22:02:20 +0000
commit02c8460a7428b9721d8784bc320f045d022ce699 (patch)
tree79dd79290dcf239fb2831a5d4dcf3ff3ad70b49d /lib/Target/ARM/ARMInstrThumb.td
parentb2756afa273b548d950b612f4e936b46e82c1f13 (diff)
downloadllvm-02c8460a7428b9721d8784bc320f045d022ce699.tar.gz
llvm-02c8460a7428b9721d8784bc320f045d022ce699.tar.bz2
llvm-02c8460a7428b9721d8784bc320f045d022ce699.tar.xz
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.td4
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;
}]>;