IRBuilder: add an assertion that checks if we try to get a debug loc from ->end();
authorNadav Rotem <nrotem@apple.com>
Tue, 9 Jul 2013 17:54:22 +0000 (17:54 +0000)
committerNadav Rotem <nrotem@apple.com>
Tue, 9 Jul 2013 17:54:22 +0000 (17:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185952 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/IR/IRBuilder.h

index cdf840f54156b26c4296e21898faddcafca5773c..80a2ede4da123ab133148cfb8b4648a6cf935ec9 100644 (file)
@@ -90,6 +90,7 @@ public:
   void SetInsertPoint(Instruction *I) {
     BB = I->getParent();
     InsertPt = I;
+    assert(I != BB->end() && "Can't read debug loc from end()");
     SetCurrentDebugLocation(I->getDebugLoc());
   }