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 78db6ad commit 76c4cdfCopy full SHA for 76c4cdf
IGC/Compiler/CISACodeGen/ConstantCoalescing.cpp
@@ -409,7 +409,10 @@ void ConstantCoalescing::ProcessBlock(
409
break;
410
}
411
412
- bool skipLdrawOpt = (m_ctx->type == ShaderType::PIXEL_SHADER) || bbHasStores;
+
413
+ bool isCPS = false;
414
415
+ bool skipLdrawOpt = isCPS || bbHasStores;
416
// get work-item analysis, need to update uniformness information
417
for (BasicBlock::iterator BBI = blk->begin(), BBE = blk->end();
418
BBI != BBE; ++BBI)
0 commit comments