diff options
Diffstat (limited to 'llvm/lib/Target/XCore')
-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), [{ |