mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-21 19:32:16 +00:00
IRBuilder: add an assertion that checks if we try to get a debug loc from ->end();
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185952 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bd6f1f6896
commit
bcd5a0f7ef
@ -90,6 +90,7 @@ public:
|
|||||||
void SetInsertPoint(Instruction *I) {
|
void SetInsertPoint(Instruction *I) {
|
||||||
BB = I->getParent();
|
BB = I->getParent();
|
||||||
InsertPt = I;
|
InsertPt = I;
|
||||||
|
assert(I != BB->end() && "Can't read debug loc from end()");
|
||||||
SetCurrentDebugLocation(I->getDebugLoc());
|
SetCurrentDebugLocation(I->getDebugLoc());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user