diff options
author | Akira Hatanaka <ahatanaka@mips.com> | 2012-12-07 03:01:24 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@mips.com> | 2012-12-07 03:01:24 +0000 |
commit | 02a346d11ff8ef215d4d347fea73caa5b192c97a (patch) | |
tree | bec6fb5701fccd793355423198b0b5ff0f3f5c9b /llvm/lib/Target/Mips/MipsCondMov.td | |
parent | c2f865e8e5df046ab1ba08fd5a10adec76c00bdf (diff) | |
download | bcm5719-llvm-02a346d11ff8ef215d4d347fea73caa5b192c97a.tar.gz bcm5719-llvm-02a346d11ff8ef215d4d347fea73caa5b192c97a.zip |
[mips] Remove unnecessary predicates.
llvm-svn: 169577
Diffstat (limited to 'llvm/lib/Target/Mips/MipsCondMov.td')
-rw-r--r-- | llvm/lib/Target/Mips/MipsCondMov.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/Mips/MipsCondMov.td b/llvm/lib/Target/Mips/MipsCondMov.td index b12b1f2b5ad..67be5d6382a 100644 --- a/llvm/lib/Target/Mips/MipsCondMov.td +++ b/llvm/lib/Target/Mips/MipsCondMov.td @@ -107,7 +107,7 @@ multiclass MovnPats<RegisterClass CRC, RegisterClass DRC, Instruction MOVNInst, // Instantiation of instructions. def MOVZ_I_I : CondMovIntInt<CPURegs, CPURegs, 0x0a, "movz">; -let Predicates = [HasMips64, HasStandardEncoding], +let Predicates = [HasStandardEncoding], DecoderNamespace = "Mips64" in { def MOVZ_I_I64 : CondMovIntInt<CPURegs, CPU64Regs, 0x0a, "movz">; def MOVZ_I64_I : CondMovIntInt<CPU64Regs, CPURegs, 0x0a, "movz"> { @@ -119,7 +119,7 @@ let Predicates = [HasMips64, HasStandardEncoding], } def MOVN_I_I : CondMovIntInt<CPURegs, CPURegs, 0x0b, "movn">; -let Predicates = [HasMips64, HasStandardEncoding], +let Predicates = [HasStandardEncoding], DecoderNamespace = "Mips64" in { def MOVN_I_I64 : CondMovIntInt<CPURegs, CPU64Regs, 0x0b, "movn">; def MOVN_I64_I : CondMovIntInt<CPU64Regs, CPURegs, 0x0b, "movn"> { |