diff options
author | Jyotsna Verma <jverma@codeaurora.org> | 2013-05-01 21:37:34 +0000 |
---|---|---|
committer | Jyotsna Verma <jverma@codeaurora.org> | 2013-05-01 21:37:34 +0000 |
commit | 5ed5181178f256f99954f2662547658a49335088 (patch) | |
tree | 63076b2e96d5b02846a7c413a397bab9951f887e /llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp | |
parent | cd66c0a2700f12e46f3ce08879c27028d2b2d5a5 (diff) | |
download | bcm5719-llvm-5ed5181178f256f99954f2662547658a49335088.tar.gz bcm5719-llvm-5ed5181178f256f99954f2662547658a49335088.zip |
Hexagon: Use multiclass for Jump instructions.
llvm-svn: 180885
Diffstat (limited to 'llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp')
-rw-r--r-- | llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp b/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp index d6a9329cd40..de993ee8751 100644 --- a/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp +++ b/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp @@ -189,7 +189,7 @@ void HexagonFrameLowering::emitEpilogue(MachineFunction &MF, // Replace 'jumpr r31' instruction with dealloc_return for V4 and higher // versions. - if (STI.hasV4TOps() && MBBI->getOpcode() == Hexagon::JMPR + if (STI.hasV4TOps() && MBBI->getOpcode() == Hexagon::JMPret && !DisableDeallocRet) { // Remove jumpr node. MBB.erase(MBBI); |