aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/PrologEpilogInserter.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2008-10-31 18:30:19 +0000
committerBill Wendling <isanbard@gmail.com>2008-10-31 18:30:19 +0000
commitf7c094000f4baf094b1d60ba68a5b4e0193c502a (patch)
tree0b5f034b6c0f32a79d40996ae400f0a3053ff989 /lib/CodeGen/PrologEpilogInserter.cpp
parent476527a19daada771579d7099eb53125d814edc1 (diff)
downloadexternal_llvm-f7c094000f4baf094b1d60ba68a5b4e0193c502a.zip
external_llvm-f7c094000f4baf094b1d60ba68a5b4e0193c502a.tar.gz
external_llvm-f7c094000f4baf094b1d60ba68a5b4e0193c502a.tar.bz2
Revert r58489. It isn't correct for all cases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58523 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/PrologEpilogInserter.cpp')
-rw-r--r--lib/CodeGen/PrologEpilogInserter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/PrologEpilogInserter.cpp b/lib/CodeGen/PrologEpilogInserter.cpp
index 2469c8e..d3b0b11 100644
--- a/lib/CodeGen/PrologEpilogInserter.cpp
+++ b/lib/CodeGen/PrologEpilogInserter.cpp
@@ -273,10 +273,10 @@ void PEI::saveCalleeSavedRegisters(MachineFunction &Fn) {
MBB = FI;
I = MBB->end(); --I;
- // Skip over all "return" instructions, which are part of the return
+ // Skip over all terminator instructions, which are part of the return
// sequence.
MachineBasicBlock::iterator I2 = I;
- while (I2 != MBB->begin() && (--I2)->getDesc().isReturn())
+ while (I2 != MBB->begin() && (--I2)->getDesc().isTerminator())
I = I2;
bool AtStart = I == MBB->begin();