diff options
author | Eric Christopher <echristo@apple.com> | 2012-10-02 21:16:55 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-10-02 21:16:55 +0000 |
commit | 4ec766facfc9086e4076c32184f39c2ce17556ba (patch) | |
tree | ef9c95abe72081e6c2f5c9a781c79ec5dc51491b /llvm/lib/Target/X86/X86FrameLowering.cpp | |
parent | 657a42daf14aa4cea6ff284509b784dc764cd778 (diff) | |
download | bcm5719-llvm-4ec766facfc9086e4076c32184f39c2ce17556ba.tar.gz bcm5719-llvm-4ec766facfc9086e4076c32184f39c2ce17556ba.zip |
Use the existing DebugLoc.
llvm-svn: 165051
Diffstat (limited to 'llvm/lib/Target/X86/X86FrameLowering.cpp')
-rw-r--r-- | llvm/lib/Target/X86/X86FrameLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86FrameLowering.cpp b/llvm/lib/Target/X86/X86FrameLowering.cpp index 34a1b1fa71c..11745ec3535 100644 --- a/llvm/lib/Target/X86/X86FrameLowering.cpp +++ b/llvm/lib/Target/X86/X86FrameLowering.cpp @@ -924,7 +924,7 @@ void X86FrameLowering::emitPrologue(MachineFunction &MF) const { } } else if (NumBytes) emitSPUpdate(MBB, MBBI, StackPtr, -(int64_t)NumBytes, Is64Bit, - UseLEA, TII, *RegInfo, MBB.findDebugLoc(MBBI)); + UseLEA, TII, *RegInfo, DL); // If we need a base pointer, set it up here. It's whatever the value // of the stack pointer is at this point. Any variable size objects |