summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/IPA
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-08-21 17:09:49 +0000
committerChris Lattner <sabre@nondot.org>2002-08-21 17:09:49 +0000
commit1a386b6a7355d63cd6bd418953e0adb4cd391bc3 (patch)
tree2bc96ddb4a01c091ffe882610657593439f4fa35 /llvm/lib/Analysis/IPA
parentc869ecbe42e7b985b8cfb3f8d9d7db31b5912234 (diff)
downloadbcm5719-llvm-1a386b6a7355d63cd6bd418953e0adb4cd391bc3.tar.gz
bcm5719-llvm-1a386b6a7355d63cd6bd418953e0adb4cd391bc3.zip
- Do not expose ::ID from any of the analyses anymore.
llvm-svn: 3417
Diffstat (limited to 'llvm/lib/Analysis/IPA')
-rw-r--r--llvm/lib/Analysis/IPA/CallGraph.cpp1
-rw-r--r--llvm/lib/Analysis/IPA/FindUnsafePointerTypes.cpp1
-rw-r--r--llvm/lib/Analysis/IPA/FindUsedTypes.cpp1
3 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/Analysis/IPA/CallGraph.cpp b/llvm/lib/Analysis/IPA/CallGraph.cpp
index 709c1942f63..5c4b5d81f7e 100644
--- a/llvm/lib/Analysis/IPA/CallGraph.cpp
+++ b/llvm/lib/Analysis/IPA/CallGraph.cpp
@@ -46,7 +46,6 @@
#include <algorithm>
static RegisterAnalysis<CallGraph> X("callgraph", "Call Graph Construction");
-AnalysisID CallGraph::ID = X;
// getNodeFor - Return the node for the specified function or create one if it
// does not already exist.
diff --git a/llvm/lib/Analysis/IPA/FindUnsafePointerTypes.cpp b/llvm/lib/Analysis/IPA/FindUnsafePointerTypes.cpp
index 425c154ecf7..5d9745cd7a4 100644
--- a/llvm/lib/Analysis/IPA/FindUnsafePointerTypes.cpp
+++ b/llvm/lib/Analysis/IPA/FindUnsafePointerTypes.cpp
@@ -25,7 +25,6 @@
static RegisterAnalysis<FindUnsafePointerTypes>
X("unsafepointertypes", "Find Unsafe Pointer Types");
-AnalysisID FindUnsafePointerTypes::ID = X;
// Provide a command line option to turn on printing of which instructions cause
// a type to become invalid
diff --git a/llvm/lib/Analysis/IPA/FindUsedTypes.cpp b/llvm/lib/Analysis/IPA/FindUsedTypes.cpp
index 6f12612c4ef..6bd79f25fee 100644
--- a/llvm/lib/Analysis/IPA/FindUsedTypes.cpp
+++ b/llvm/lib/Analysis/IPA/FindUsedTypes.cpp
@@ -13,7 +13,6 @@
static RegisterAnalysis<FindUsedTypes>
X("printusedtypes", "Find Used Types");
-AnalysisID FindUsedTypes::ID = X;
// IncorporateType - Incorporate one type and all of its subtypes into the
// collection of used types.
OpenPOWER on IntegriCloud