[clang] 548e8e9 - [X86] [clang] Add missing check line for diamondrapids (NFC) (#145542)

via cfe-commits cfe-commits at lists.llvm.org
Thu Jun 26 05:04:57 PDT 2025


Author: Mikołaj Piróg
Date: 2025-06-26T14:04:53+02:00
New Revision: 548e8e92e98d727534aff93771e032696aca11e3

URL: https://github.com/llvm/llvm-project/commit/548e8e92e98d727534aff93771e032696aca11e3
DIFF: https://github.com/llvm/llvm-project/commit/548e8e92e98d727534aff93771e032696aca11e3.diff

LOG: [X86] [clang] Add missing check line for diamondrapids (NFC) (#145542)

As in title. Without it, the test doesn't check for dmr

Added: 
    

Modified: 
    clang/test/CodeGen/attr-target-mv.c

Removed: 
    


################################################################################
diff  --git a/clang/test/CodeGen/attr-target-mv.c b/clang/test/CodeGen/attr-target-mv.c
index 6911b55203b7e..07f47d93cd29c 100644
--- a/clang/test/CodeGen/attr-target-mv.c
+++ b/clang/test/CodeGen/attr-target-mv.c
@@ -201,6 +201,8 @@ void calls_pr50025c(void) { pr50025c(); }
 // ITANIUM: ret i32 25
 // ITANIUM: define{{.*}} i32 @foo.arch_clearwaterforest()
 // ITANIUM: ret i32 26
+// ITANIUM: define{{.*}} i32 @foo.arch_diamondrapids()
+// ITANIUM: ret i32 27
 // ITANIUM: define{{.*}} i32 @foo()
 // ITANIUM: ret i32 2
 // ITANIUM: define{{.*}} i32 @bar()
@@ -258,6 +260,8 @@ void calls_pr50025c(void) { pr50025c(); }
 // WINDOWS: ret i32 25
 // WINDOWS: define dso_local i32 @foo.arch_clearwaterforest()
 // WINDOWS: ret i32 26
+// WINDOWS: define dso_local i32 @foo.arch_diamondrapids()
+// WINDOWS: ret i32 27
 // WINDOWS: define dso_local i32 @foo()
 // WINDOWS: ret i32 2
 // WINDOWS: define dso_local i32 @bar()


        


More information about the cfe-commits mailing list