From 2d48ad67cd3c18098edd9ed14437139bdf5b5f53 Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Wed, 18 May 2011 20:58:47 +0000 Subject: [PATCH] Set debug location while setting insertion point. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131575 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/IRBuilder.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/llvm/Support/IRBuilder.h b/include/llvm/Support/IRBuilder.h index 147b520a723..ea3e6b4ad54 100644 --- a/include/llvm/Support/IRBuilder.h +++ b/include/llvm/Support/IRBuilder.h @@ -80,6 +80,7 @@ public: void SetInsertPoint(Instruction *I) { BB = I->getParent(); InsertPt = I; + SetCurrentDebugLocation(I->getDebugLoc()); } /// SetInsertPoint - This specifies that created instructions should be