diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2016-10-07 00:30:49 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2016-10-07 00:30:49 +0000 |
commit | 2261d78cd24d71101b0faa9efb1f4e868dce52e5 (patch) | |
tree | b9bbf64fbdefd30ad7154f5ab5436382a004725d /llvm/lib/Target/XCore/XCoreInstrInfo.td | |
parent | 8ed1aee9ddb812d6b3b1ddfa52993022aa64d07b (diff) | |
download | bcm5719-llvm-2261d78cd24d71101b0faa9efb1f4e868dce52e5.tar.gz bcm5719-llvm-2261d78cd24d71101b0faa9efb1f4e868dce52e5.zip |
Target: Remove unused patterns and transforms. NFC.
llvm-svn: 283515
Diffstat (limited to 'llvm/lib/Target/XCore/XCoreInstrInfo.td')
-rw-r--r-- | llvm/lib/Target/XCore/XCoreInstrInfo.td | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/lib/Target/XCore/XCoreInstrInfo.td b/llvm/lib/Target/XCore/XCoreInstrInfo.td index 8110b918c22..f1d52d5a191 100644 --- a/llvm/lib/Target/XCore/XCoreInstrInfo.td +++ b/llvm/lib/Target/XCore/XCoreInstrInfo.td @@ -146,18 +146,10 @@ def immU6 : PatLeaf<(imm), [{ return (uint32_t)N->getZExtValue() < (1 << 6); }]>; -def immU10 : PatLeaf<(imm), [{ - return (uint32_t)N->getZExtValue() < (1 << 10); -}]>; - def immU16 : PatLeaf<(imm), [{ return (uint32_t)N->getZExtValue() < (1 << 16); }]>; -def immU20 : PatLeaf<(imm), [{ - return (uint32_t)N->getZExtValue() < (1 << 20); -}]>; - def immMskBitp : PatLeaf<(imm), [{ return immMskBitp(N); }]>; def immBitp : PatLeaf<(imm), [{ |