projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd6f1f6
)
IRBuilder: add an assertion that checks if we try to get a debug loc from ->end();
author
Nadav Rotem
<nrotem@apple.com>
Tue, 9 Jul 2013 17:54:22 +0000
(17:54 +0000)
committer
Nadav 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
patch
|
blob
|
history
diff --git
a/include/llvm/IR/IRBuilder.h
b/include/llvm/IR/IRBuilder.h
index cdf840f54156b26c4296e21898faddcafca5773c..80a2ede4da123ab133148cfb8b4648a6cf935ec9 100644
(file)
--- a/
include/llvm/IR/IRBuilder.h
+++ b/
include/llvm/IR/IRBuilder.h
@@
-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());
}