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 4992d40 commit bde6fc5Copy full SHA for bde6fc5
IGC/Compiler/CISACodeGen/EmitVISAPass.cpp
@@ -19412,13 +19412,8 @@ bool EmitPass::ResourceLoopHeader(
19412
CVariable* resourceFlag = nullptr;
19413
CVariable* samplerFlag = nullptr;
19414
CVariable* offset = nullptr;
19415
- if (!uniformResource) {
19416
- label = m_encoder->GetNewLabelID("__opt_resource_loop");
19417
- m_encoder->AddDivergentResourceLoopLabel(label);
19418
- } else {
19419
- label = m_encoder->GetNewLabelID("resource_loop");
19420
- m_encoder->AddLabel(label);
19421
- }
+ label = m_encoder->GetNewLabelID("_opt_resource_loop");
+ m_encoder->AddDivergentResourceLoopLabel(label);
19422
m_encoder->Push();
19423
if (!uniformResource)
19424
{
0 commit comments