[llvm] [SPIRV] Expand RWBuffer load and store from HLSL (PR #122355)

Vyacheslav Levytskyy via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 13 10:17:09 PST 2025


================
@@ -725,6 +732,14 @@ Type *SPIRVEmitIntrinsics::deduceElementTypeHelper(
       if (Ty)
         break;
     }
+  } else if (auto *II = dyn_cast<IntrinsicInst>(I)) {
----------------
VyacheslavLevytskyy wrote:

I think we can't insert this special case here, because it'd shadow the next "else if" for `CallInst` that contains a more general logics. Let's please move it inside the case of `CallInst`, so that intrinsic calls still be evaluated by its logic unless it's the special case of `Intrinsic::spv_resource_getpointer`.

https://github.com/llvm/llvm-project/pull/122355


More information about the llvm-commits mailing list