[llvm] [SPIR-V] Add pass to merge convergence region exit targets (PR #92531)
Nathan Gauër via llvm-commits
llvm-commits at lists.llvm.org
Tue May 21 02:29:06 PDT 2024
================
@@ -1074,6 +1084,10 @@ void SPIRVEmitIntrinsics::processGlobalValue(GlobalVariable &GV,
void SPIRVEmitIntrinsics::insertAssignPtrTypeIntrs(Instruction *I,
IRBuilder<> &B) {
+ // Don't assign types to LLVM tokens.
+ if (isConvergenceIntrinsic(I))
----------------
Keenuts wrote:
Yes, that's better, changed, thanks!
https://github.com/llvm/llvm-project/pull/92531
More information about the llvm-commits
mailing list