[llvm] gn build: Sync GENERIC_TF_SOURCES with CMake. (PR #88456)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 11 16:24:59 PDT 2024
https://github.com/pcc created https://github.com/llvm/llvm-project/pull/88456
None
>From b356c5564747bdc015d77066ffad44daa95b0a89 Mon Sep 17 00:00:00 2001
From: Peter Collingbourne <peter at pcc.me.uk>
Date: Thu, 11 Apr 2024 16:24:45 -0700
Subject: [PATCH] =?UTF-8?q?[=F0=9D=98=80=F0=9D=97=BD=F0=9D=97=BF]=20initia?=
=?UTF-8?q?l=20version?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Created using spr 1.3.6-beta.1
---
.../gn/secondary/compiler-rt/lib/builtins/BUILD.gn | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
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 4b8d6193eae497..3005a2a8a1852a 100644
--- a/llvm/utils/gn/secondary/compiler-rt/lib/builtins/BUILD.gn
+++ b/llvm/utils/gn/secondary/compiler-rt/lib/builtins/BUILD.gn
@@ -95,7 +95,6 @@ static_library("builtins") {
"absvti2.c",
"adddf3.c",
"addsf3.c",
- "addtf3.c",
"addvdi3.c",
"addvsi3.c",
"addvti3.c",
@@ -125,8 +124,6 @@ static_library("builtins") {
"divsc3.c",
"divsf3.c",
"divsi3.c",
- "divtc3.c",
- "divtf3.c",
"divti3.c",
"extendhfsf2.c",
"extendsfdf2.c",
@@ -172,7 +169,6 @@ static_library("builtins") {
"muloti4.c",
"mulsc3.c",
"mulsf3.c",
- "multf3.c",
"multi3.c",
"mulvdi3.c",
"mulvsi3.c",
@@ -193,10 +189,8 @@ static_library("builtins") {
"popcountti2.c",
"powidf2.c",
"powisf2.c",
- "powitf2.c",
"subdf3.c",
"subsf3.c",
- "subtf3.c",
"subvdi3.c",
"subvsi3.c",
"subvti3.c",
@@ -248,7 +242,10 @@ static_library("builtins") {
if ((current_cpu == "x64" && current_os != "win") || current_cpu == "arm64") {
# GENERIC_TF_SOURCES
sources += [
+ "addtf3.c",
"comparetf2.c",
+ "divtc3.c",
+ "divtf3.c",
"extenddftf2.c",
"extendhftf2.c",
"extendsftf2.c",
@@ -265,6 +262,9 @@ static_library("builtins") {
"floatunsitf.c",
"floatuntitf.c",
"multc3.c",
+ "multf3.c",
+ "powitf2.c",
+ "subtf3.c",
"trunctfdf2.c",
"trunctfhf2.c",
"trunctfsf2.c",
More information about the llvm-commits
mailing list