[llvm] [gn build] Port b73ce3e53fcb (PR #196049)
Nico Weber via llvm-commits
llvm-commits at lists.llvm.org
Wed May 6 04:03:33 PDT 2026
https://github.com/nico created https://github.com/llvm/llvm-project/pull/196049
None
>From 02f94fa23c0fc0a65c07b9e5d420f5ae89871be0 Mon Sep 17 00:00:00 2001
From: Nico Weber <thakis at chromium.org>
Date: Wed, 6 May 2026 07:03:21 -0400
Subject: [PATCH] [gn build] Port b73ce3e53fcb
---
.../lib/ScalableStaticAnalysisFramework/Analyses/BUILD.gn | 5 +++++
.../clang/unittests/ScalableStaticAnalysisFramework/BUILD.gn | 1 +
2 files changed, 6 insertions(+)
diff --git a/llvm/utils/gn/secondary/clang/lib/ScalableStaticAnalysisFramework/Analyses/BUILD.gn b/llvm/utils/gn/secondary/clang/lib/ScalableStaticAnalysisFramework/Analyses/BUILD.gn
index 3c715035e1a22..f54dea7d2bde5 100644
--- a/llvm/utils/gn/secondary/clang/lib/ScalableStaticAnalysisFramework/Analyses/BUILD.gn
+++ b/llvm/utils/gn/secondary/clang/lib/ScalableStaticAnalysisFramework/Analyses/BUILD.gn
@@ -13,10 +13,15 @@ static_library("Analyses") {
"CallGraph/CallGraphExtractor.cpp",
"CallGraph/CallGraphJSONFormat.cpp",
"EntityPointerLevel/EntityPointerLevel.cpp",
+ "EntityPointerLevel/EntityPointerLevelFormat.cpp",
+ "PointerFlow/PointerFlow.cpp",
"PointerFlow/PointerFlowAnalysis.cpp",
+ "PointerFlow/PointerFlowExtractor.cpp",
+ "PointerFlow/PointerFlowFormat.cpp",
"SSAFAnalysesCommon.cpp",
"UnsafeBufferUsage/UnsafeBufferUsage.cpp",
"UnsafeBufferUsage/UnsafeBufferUsageAnalysis.cpp",
"UnsafeBufferUsage/UnsafeBufferUsageExtractor.cpp",
+ "UnsafeBufferUsage/UnsafeBufferUsageFormat.cpp",
]
}
diff --git a/llvm/utils/gn/secondary/clang/unittests/ScalableStaticAnalysisFramework/BUILD.gn b/llvm/utils/gn/secondary/clang/unittests/ScalableStaticAnalysisFramework/BUILD.gn
index 711cf324adb91..0db7b474b0137 100644
--- a/llvm/utils/gn/secondary/clang/unittests/ScalableStaticAnalysisFramework/BUILD.gn
+++ b/llvm/utils/gn/secondary/clang/unittests/ScalableStaticAnalysisFramework/BUILD.gn
@@ -20,6 +20,7 @@ unittest("ClangScalableAnalysisTests") {
sources = [
"ASTEntityMappingTest.cpp",
"Analyses/CallGraph/CallGraphExtractorTest.cpp",
+ "Analyses/PointerFlow/PointerFlowTest.cpp",
"Analyses/PointerFlow/PointerFlowWPATest.cpp",
"Analyses/UnsafeBufferUsage/UnsafeBufferUsageTest.cpp",
"Analyses/UnsafeBufferUsage/UnsafeBufferUsageWPATest.cpp",
More information about the llvm-commits
mailing list