aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/IR/Verifier.cpp
diff options
context:
space:
mode:
authorStanislav Mekhanoshin <Stanislav.Mekhanoshin@amd.com>2025-08-26 14:10:19 -0700
committerGitHub <noreply@github.com>2025-08-26 14:10:19 -0700
commit2c920a11e3af22f4b999020b084ce677da71888f (patch)
tree4deaf510c16b8db3efdb5d0d65499fa0d2224fa4 /llvm/lib/IR/Verifier.cpp
parentd42f5eb5e73b8ae683da042ad16dc6047bc18348 (diff)
downloadllvm-2c920a11e3af22f4b999020b084ce677da71888f.zip
llvm-2c920a11e3af22f4b999020b084ce677da71888f.tar.gz
llvm-2c920a11e3af22f4b999020b084ce677da71888f.tar.bz2
[AMDGPU] wmma_scale* IR verification (#155493)
Diffstat (limited to 'llvm/lib/IR/Verifier.cpp')
-rw-r--r--llvm/lib/IR/Verifier.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/IR/Verifier.cpp b/llvm/lib/IR/Verifier.cpp
index 4eb4b58..9fda086 100644
--- a/llvm/lib/IR/Verifier.cpp
+++ b/llvm/lib/IR/Verifier.cpp
@@ -6724,7 +6724,9 @@ void Verifier::visitIntrinsicCall(Intrinsic::ID ID, CallBase &Call) {
"invalid vector type for format", &Call, Src1, Call.getArgOperand(5));
break;
}
- case Intrinsic::amdgcn_wmma_f32_16x16x128_f8f6f4: {
+ case Intrinsic::amdgcn_wmma_f32_16x16x128_f8f6f4:
+ case Intrinsic::amdgcn_wmma_scale_f32_16x16x128_f8f6f4:
+ case Intrinsic::amdgcn_wmma_scale16_f32_16x16x128_f8f6f4: {
Value *Src0 = Call.getArgOperand(1);
Value *Src1 = Call.getArgOperand(3);