diff options
| author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-01-13 21:28:52 +0000 | 
|---|---|---|
| committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-01-13 21:28:52 +0000 | 
| commit | 4f28c1c71450c711e96aa283de53739d8b4504cd (patch) | |
| tree | 1dd3ac5b610ce2895b7a83a8f97a247f471e3f3a /lib/Target/Blackfin | |
| parent | 422578547e0e3464af7ae23305c54dd71a8bd9e9 (diff) | |
| download | external_llvm-4f28c1c71450c711e96aa283de53739d8b4504cd.zip external_llvm-4f28c1c71450c711e96aa283de53739d8b4504cd.tar.gz external_llvm-4f28c1c71450c711e96aa283de53739d8b4504cd.tar.bz2  | |
Teach frame lowering to ignore debug values after the terminators.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123399 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Blackfin')
| -rw-r--r-- | lib/Target/Blackfin/BlackfinFrameLowering.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Blackfin/BlackfinFrameLowering.cpp b/lib/Target/Blackfin/BlackfinFrameLowering.cpp index 594325f..08bb952 100644 --- a/lib/Target/Blackfin/BlackfinFrameLowering.cpp +++ b/lib/Target/Blackfin/BlackfinFrameLowering.cpp @@ -90,7 +90,7 @@ void BlackfinFrameLowering::emitEpilogue(MachineFunction &MF,      static_cast<const BlackfinRegisterInfo*>(MF.getTarget().getRegisterInfo());    const BlackfinInstrInfo &TII =      *static_cast<const BlackfinInstrInfo*>(MF.getTarget().getInstrInfo()); -  MachineBasicBlock::iterator MBBI = prior(MBB.end()); +  MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugInstr();    DebugLoc dl = MBBI->getDebugLoc();    int FrameSize = MFI->getStackSize();  | 
