diff options
author | Reed Kotler <rkotler@mips.com> | 2012-10-30 00:54:49 +0000 |
---|---|---|
committer | Reed Kotler <rkotler@mips.com> | 2012-10-30 00:54:49 +0000 |
commit | c09856b5357af621fcb84a7b2b6bfbf630c244ef (patch) | |
tree | 1672492a2ab7e2e173500a178141c1b19233e0b9 /lib/Target/Mips/Mips16InstrInfo.cpp | |
parent | 803ea1c40aa059adf5b1baef0bf4510483565d07 (diff) |
Change mips16 delay slot jumps to non delay slot forms by default.
We will make them delay slot forms if there is something that can be
placed in the delay slot during a separate pass. Mips16 extended instructions
cannot be placed in delay slots.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166990 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/Mips16InstrInfo.cpp')
-rw-r--r-- | lib/Target/Mips/Mips16InstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Mips/Mips16InstrInfo.cpp b/lib/Target/Mips/Mips16InstrInfo.cpp index 5e33fed0cc..fa0876a4eb 100644 --- a/lib/Target/Mips/Mips16InstrInfo.cpp +++ b/lib/Target/Mips/Mips16InstrInfo.cpp @@ -126,7 +126,7 @@ bool Mips16InstrInfo::expandPostRAPseudo(MachineBasicBlock::iterator MI) const { default: return false; case Mips::RetRA16: - ExpandRetRA16(MBB, MI, Mips::JrRa16); + ExpandRetRA16(MBB, MI, Mips::JrcRa16); break; } |