Transfer debug loc to lowered call.
authorDevang Patel <dpatel@apple.com>
Mon, 18 Oct 2010 18:53:44 +0000 (18:53 +0000)
committerDevang Patel <dpatel@apple.com>
Mon, 18 Oct 2010 18:53:44 +0000 (18:53 +0000)
Patch by Alexander Herz!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116733 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/LowerInvoke.cpp

index e8a11e3d0cce783a6d581a088bda55343cb1e4c1..77d7f153d7e0f80b73b1692891a590c6a8273e4d 100644 (file)
@@ -187,6 +187,7 @@ bool LowerInvoke::insertCheapEHSupport(Function &F) {
       NewCall->takeName(II);
       NewCall->setCallingConv(II->getCallingConv());
       NewCall->setAttributes(II->getAttributes());
+      NewCall->setDebugLoc(II->getDebugLoc());
       II->replaceAllUsesWith(NewCall);
 
       // Insert an unconditional branch to the normal destination.
@@ -267,6 +268,7 @@ void LowerInvoke::rewriteExpensiveInvoke(InvokeInst *II, unsigned InvokeNo,
   NewCall->takeName(II);
   NewCall->setCallingConv(II->getCallingConv());
   NewCall->setAttributes(II->getAttributes());
+  NewCall->setDebugLoc(II->getDebugLoc());
   II->replaceAllUsesWith(NewCall);
 
   // Replace the invoke with an uncond branch.