diff options
author | Akira Hatanaka <ahatanaka@mips.com> | 2011-12-19 19:32:20 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@mips.com> | 2011-12-19 19:32:20 +0000 |
commit | ed538b5271b2ec11dad7af362ec76d5fbac5f6d0 (patch) | |
tree | 34b45bbec849893a93178159f5d82f9ecd00f469 /lib | |
parent | 89dc8d790d1ab3c903dfdf211f651350438a72fe (diff) | |
download | external_llvm-ed538b5271b2ec11dad7af362ec76d5fbac5f6d0.zip external_llvm-ed538b5271b2ec11dad7af362ec76d5fbac5f6d0.tar.gz external_llvm-ed538b5271b2ec11dad7af362ec76d5fbac5f6d0.tar.bz2 |
Remove unused predicate.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146889 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/Mips/Mips64InstrInfo.td | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Target/Mips/Mips64InstrInfo.td b/lib/Target/Mips/Mips64InstrInfo.td index 2996986..76411c6 100644 --- a/lib/Target/Mips/Mips64InstrInfo.td +++ b/lib/Target/Mips/Mips64InstrInfo.td @@ -28,9 +28,6 @@ def Subtract32 : SDNodeXForm<imm, [{ return getImm(N, (unsigned)N->getZExtValue() - 32); }]>; -// shamt field must fit in 5 bits. -def immZExt5_64 : ImmLeaf<i64, [{return Imm == (Imm & 0x1f);}]>; - // imm32_63 predicate - True if imm is in range [32, 63]. def imm32_63 : ImmLeaf<i32, [{return (int32_t)Imm >= 32 && (int32_t)Imm < 64;}], |