[Lldb-commits] [clang] [lldb] [llvm] [OpenCL][Clang] Add support for cooperative matrix extension (PR #221328)
Sven van Haastregt via lldb-commits
lldb-commits at lists.llvm.org
Wed Sep 23 08:47:59 PDT 2026
================
@@ -1931,6 +1931,73 @@ def MatrixColumnMajorStore : Builtin {
let Prototype = "void(...)";
}
+// Cooperative Matrix builtins for cl_khr_cooperative_matrix
+def CoopMatLoad : Builtin {
+ let Spellings = ["coop_mat_load"];
+ let Attributes = [NoThrow, CustomTypeChecking];
+ let Prototype = "void(...)";
----------------
svenvh wrote:
Right, thanks for looking at that; that's a shame as that means we need to do more ourselves in `SemaChecking.cpp`.
https://github.com/llvm/llvm-project/pull/221328
More information about the lldb-commits
mailing list