[llvm] [AMDGPU] Enhance verification of amdgcn.cs.chain intrinsic (PR #128162)

Robert Imschweiler via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 21 05:19:55 PST 2025


================
@@ -6367,6 +6367,8 @@ void Verifier::visitIntrinsicCall(Intrinsic::ID ID, CallBase &Call) {
           "SGPR arguments must have the `inreg` attribute", &Call);
     Check(!Call.paramHasAttr(3, Attribute::InReg),
           "VGPR arguments must not have the `inreg` attribute", &Call);
+    Check(dyn_cast_or_null<UnreachableInst>(Call.getNextNode()),
----------------
ro-i wrote:

I changed it to isa_and_present. Is that what you meant?

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


More information about the llvm-commits mailing list