We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37c9e8b commit 75a71afCopy full SHA for 75a71af
IGC/Compiler/CISACodeGen/ResolveGAS.cpp
@@ -500,6 +500,7 @@ bool GASPropagator::visitPHINode(PHINode& PN) {
500
for (unsigned i = 0; i != e; ++i)
501
NewPN->addIncoming(NewIncomingValues[i], PN.getIncomingBlock(i));
502
NewPN->takeName(&PN);
503
+ NewPN->setDebugLoc(PN.getDebugLoc());
504
505
BuilderType::InsertPointGuard Guard(*IRB);
506
IRB->SetInsertPoint(PN.getParent()->getFirstNonPHI());
0 commit comments