diff options
author | Chris Lattner <sabre@nondot.org> | 2010-02-28 07:23:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-02-28 07:23:21 +0000 |
commit | e0d2753f2b43ab595e341e45dbb874a330bd8d5f (patch) | |
tree | 9a1c7b2d39fa7ffaa3fa9bb89b71e3f643895b46 | |
parent | 19f047f5f6c44d1cd5681f9314b3ff5e7bae122d (diff) |
remove redundant instruction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97374 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/Mips/MipsInstrInfo.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/Mips/MipsInstrInfo.td b/lib/Target/Mips/MipsInstrInfo.td index ba0a736997..cef3697fa8 100644 --- a/lib/Target/Mips/MipsInstrInfo.td +++ b/lib/Target/Mips/MipsInstrInfo.td @@ -592,8 +592,8 @@ def : Pat<(MipsJmpLink (i32 tglobaladdr:$dst)), (JAL tglobaladdr:$dst)>; def : Pat<(MipsJmpLink (i32 texternalsym:$dst)), (JAL texternalsym:$dst)>; -def : Pat<(MipsJmpLink CPURegs:$dst), - (JALR CPURegs:$dst)>; +//def : Pat<(MipsJmpLink CPURegs:$dst), +// (JALR CPURegs:$dst)>; // hi/lo relocs def : Pat<(MipsHi tglobaladdr:$in), (LUi tglobaladdr:$in)>; |