[llvm] 358fe49 - [gn build] Manually port 9237cfa6

Arthur Eubanks via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 19 16:38:02 PST 2023


Author: Arthur Eubanks
Date: 2023-12-19T16:37:48-08:00
New Revision: 358fe496492563dee773a29338c0ccf0d03b463a

URL: https://github.com/llvm/llvm-project/commit/358fe496492563dee773a29338c0ccf0d03b463a
DIFF: https://github.com/llvm/llvm-project/commit/358fe496492563dee773a29338c0ccf0d03b463a.diff

LOG: [gn build] Manually port 9237cfa6

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/utils/gn/secondary/compiler-rt/lib/builtins/BUILD.gn b/llvm/utils/gn/secondary/compiler-rt/lib/builtins/BUILD.gn
index 800a647ad64483..63285ef7ff8a50 100644
--- a/llvm/utils/gn/secondary/compiler-rt/lib/builtins/BUILD.gn
+++ b/llvm/utils/gn/secondary/compiler-rt/lib/builtins/BUILD.gn
@@ -274,7 +274,7 @@ static_library("builtins") {
   if (current_cpu == "x86" || current_cpu == "x64") {
     sources -= [ "fp_mode.c" ]
     sources += [
-      "cpu_model.c",
+      "cpu_model/x86.c",
       "i386/fp_mode.c",
       "truncdfbf2.c",
       "truncsfbf2.c",
@@ -496,7 +496,7 @@ static_library("builtins") {
     sources -= [ "fp_mode.c" ]
     sources += [
       "aarch64/fp_mode.c",
-      "cpu_model.c",
+      "cpu_model/aarch64.c",
     ]
     if (current_os == "mingw") {
       sources += [ "aarch64/chkstk.S" ]


        


More information about the llvm-commits mailing list