Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions llvm/lib/Target/AMDGPU/SIWholeQuadMode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1300,6 +1300,12 @@ void SIWholeQuadMode::processBlock(MachineBasicBlock &MBB, BlockInfo &BI,

for (unsigned Idx = 0;; ++Idx) {
MachineBasicBlock::iterator Next = II;

if (II != IE && II->isDebugInstr()) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not all meta instructions? Also testcase?

II = ++Next;
continue;
}

char Needs = StateExact | StateWQM; // Strict mode is disabled by default.
char OutNeeds = 0;

Expand Down