[llvm] 561f915 - [gn build] Port b515d9ea1e43

LLVM GN Syncbot via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 18 18:37:23 PDT 2024


Author: LLVM GN Syncbot
Date: 2024-10-19T01:37:17Z
New Revision: 561f9155fb8beea15e1824ea966f934477f05fa6

URL: https://github.com/llvm/llvm-project/commit/561f9155fb8beea15e1824ea966f934477f05fa6
DIFF: https://github.com/llvm/llvm-project/commit/561f9155fb8beea15e1824ea966f934477f05fa6.diff

LOG: [gn build] Port b515d9ea1e43

Added: 
    

Modified: 
    llvm/utils/gn/secondary/compiler-rt/lib/hwasan/BUILD.gn

Removed: 
    


################################################################################
diff  --git a/llvm/utils/gn/secondary/compiler-rt/lib/hwasan/BUILD.gn b/llvm/utils/gn/secondary/compiler-rt/lib/hwasan/BUILD.gn
index e39d8114d1f473..f453dde0ea93eb 100644
--- a/llvm/utils/gn/secondary/compiler-rt/lib/hwasan/BUILD.gn
+++ b/llvm/utils/gn/secondary/compiler-rt/lib/hwasan/BUILD.gn
@@ -64,16 +64,10 @@ source_set("sources") {
     "hwasan_type_test.cpp",
   ]
   if (current_cpu == "arm64") {
-    sources += [
-      "hwasan_setjmp_aarch64.S",
-      "hwasan_tag_mismatch_aarch64.S",
-    ]
+    sources += [ "hwasan_setjmp_aarch64.S" ]
   }
   if (current_cpu == "riscv64") {
-    sources += [
-      "hwasan_setjmp_riscv64.S",
-      "hwasan_tag_mismatch_riscv64.S",
-    ]
+    sources += [ "hwasan_setjmp_riscv64.S" ]
   }
   if (current_cpu == "x64") {
     sources += [ "hwasan_setjmp_x86_64.S" ]


        


More information about the llvm-commits mailing list