[llvm] ffadd30 - [gn build] Port 1a995a0af3c

LLVM GN Syncbot via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 20 11:33:56 PDT 2020


Author: LLVM GN Syncbot
Date: 2020-08-20T18:24:44Z
New Revision: ffadd30b31e79839ce286206a6b1fcffd072a682

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

LOG: [gn build] Port 1a995a0af3c

Added: 
    

Modified: 
    llvm/utils/gn/secondary/clang/lib/Basic/BUILD.gn
    llvm/utils/gn/secondary/clang/unittests/Basic/BUILD.gn
    llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
    llvm/utils/gn/secondary/llvm/unittests/ADT/BUILD.gn

Removed: 
    


################################################################################
diff  --git a/llvm/utils/gn/secondary/clang/lib/Basic/BUILD.gn b/llvm/utils/gn/secondary/clang/lib/Basic/BUILD.gn
index 76c97f2401bb..d34748ed74f0 100644
--- a/llvm/utils/gn/secondary/clang/lib/Basic/BUILD.gn
+++ b/llvm/utils/gn/secondary/clang/lib/Basic/BUILD.gn
@@ -55,7 +55,6 @@ static_library("Basic") {
     "ExpressionTraits.cpp",
     "FileManager.cpp",
     "FileSystemStatCache.cpp",
-    "FixedPoint.cpp",
     "IdentifierTable.cpp",
     "LangOptions.cpp",
     "LangStandards.cpp",

diff  --git a/llvm/utils/gn/secondary/clang/unittests/Basic/BUILD.gn b/llvm/utils/gn/secondary/clang/unittests/Basic/BUILD.gn
index 2f4555d548c8..bcbb80a6933f 100644
--- a/llvm/utils/gn/secondary/clang/unittests/Basic/BUILD.gn
+++ b/llvm/utils/gn/secondary/clang/unittests/Basic/BUILD.gn
@@ -11,7 +11,6 @@ unittest("BasicTests") {
     "CharInfoTest.cpp",
     "DiagnosticTest.cpp",
     "FileManagerTest.cpp",
-    "FixedPointTest.cpp",
     "SourceManagerTest.cpp",
   ]
 }

diff  --git a/llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn b/llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
index 3e804b8518f5..93270c20243a 100644
--- a/llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
@@ -34,6 +34,7 @@ static_library("Support") {
     "AArch64TargetParser.cpp",
     "ABIBreak.cpp",
     "AMDGPUMetadata.cpp",
+    "APFixedPoint.cpp",
     "APFloat.cpp",
     "APInt.cpp",
     "APSInt.cpp",

diff  --git a/llvm/utils/gn/secondary/llvm/unittests/ADT/BUILD.gn b/llvm/utils/gn/secondary/llvm/unittests/ADT/BUILD.gn
index 8183cbf0c04c..c97c22c930e1 100644
--- a/llvm/utils/gn/secondary/llvm/unittests/ADT/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/unittests/ADT/BUILD.gn
@@ -10,6 +10,7 @@ unittest("ADTTests") {
     "//llvm/lib/Testing/Support",
   ]
   sources = [
+    "APFixedPointTest.cpp",
     "APFloatTest.cpp",
     "APIntTest.cpp",
     "APSIntTest.cpp",


        


More information about the llvm-commits mailing list