[llvm] [LLVM][Intrinsics] Print note if manual name matches default name (PR #164716)
    Rahul Joshi via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Thu Oct 23 09:35:14 PDT 2025
    
    
  
================
@@ -2767,14 +2779,15 @@ foreach cta_group = ["cg1", "cg2"] in {
                      "64x128b_warpx2_02_13",
                      "64x128b_warpx2_01_23",
                      "32x128b_warpx4"] in {
-      defvar intr_suffix = StrJoin<"_", [shape, src_fmt, cta_group]>.ret;
-      defvar name_suffix = StrJoin<".", [shape, src_fmt, cta_group]>.ret;
+      defvar name = "llvm.nvvm.tcgen05.cp."  #
+                    StrJoin<".", [shape, src_fmt, cta_group]>.ret;
 
-      def int_nvvm_tcgen05_cp_ # intr_suffix : Intrinsic<[],
+      defvar intname = IntrinsicName<name>;
----------------
jurahul wrote:
Done, made it intrinsic_name
https://github.com/llvm/llvm-project/pull/164716
    
    
More information about the llvm-commits
mailing list