diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-21 17:09:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-21 17:09:49 +0000 |
commit | 1a386b6a7355d63cd6bd418953e0adb4cd391bc3 (patch) | |
tree | 2bc96ddb4a01c091ffe882610657593439f4fa35 /llvm/lib/Analysis/IPA | |
parent | c869ecbe42e7b985b8cfb3f8d9d7db31b5912234 (diff) | |
download | bcm5719-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.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/Analysis/IPA/FindUnsafePointerTypes.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/Analysis/IPA/FindUsedTypes.cpp | 1 |
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. |