mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-23 22:23:00 +00:00
Teach MachineBasicBlock::getFirstTerminator to ignore debug values.
It will still return an iterator that points to the first terminator or end(), but there may be DBG_VALUE instructions following the first terminator. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123384 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -339,6 +339,8 @@ void PHIElimination::LowerAtomicPHINode(
|
||||
#ifndef NDEBUG
|
||||
for (MachineBasicBlock::iterator TI = llvm::next(Term);
|
||||
TI != opBlock.end(); ++TI) {
|
||||
if (TI->isDebugValue())
|
||||
continue;
|
||||
assert(!TI->readsRegister(SrcReg) &&
|
||||
"Terminator instructions cannot use virtual registers unless"
|
||||
"they are the first terminator in a block!");
|
||||
|
||||
Reference in New Issue
Block a user