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 bdc5947 commit 6a257feCopy full SHA for 6a257fe
llvm/tools/sycl-post-link/sycl-post-link.cpp
@@ -689,6 +689,11 @@ static void LowerEsimdConstructs(Module &M) {
689
MPM.add(createEarlyCSEPass(true));
690
MPM.add(createInstructionCombiningPass());
691
MPM.add(createDeadCodeEliminationPass());
692
+ // TODO: maybe remove some passes below that don't affect code quality
693
+ MPM.add(createSROAPass());
694
+ MPM.add(createEarlyCSEPass(true));
695
+ MPM.add(createInstructionCombiningPass());
696
+ MPM.add(createDeadCodeEliminationPass());
697
}
698
MPM.add(createGenXSPIRVWriterAdaptorPass());
699
MPM.run(M);
0 commit comments