[Lldb-commits] [clang] [lldb] [llvm] [OpenCL][Clang] Add support for cooperative matrix extension (PR #221328)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Sep 24 17:58:40 PDT 2026
================
@@ -11955,6 +11955,73 @@ def ext_opencl_ext_vector_type_rgba_selector: ExtWarn<
def err_openclcxx_placement_new : Error<
"use of placement new requires explicit declaration">;
+// OpenCL C Cooperative Matrix.
+def ext_coopmat_without_pragma
+ : Error<"cooperative matrix types require OpenCL extension '%0' to be enabled via pragma">;
+
+def err_invalid_coopmat_attr
+ : Error<"invalid argument of cooperative matrix attribute">;
+
+def err_coop_mat_not_primitive
----------------
asudarsa-qti wrote:
Fixed in a1cd6feadde77a6cc87a39f1dd73f66c1f3a355e
https://github.com/llvm/llvm-project/pull/221328
More information about the lldb-commits
mailing list