diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-21 17:09:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-21 17:09:45 +0000 |
commit | 044f9087915168efb7ab4faf3a1a1ca6b1ca4a82 (patch) | |
tree | 744ad8cfae73711c2f3c46a0bf25152ec0097d9d /lib | |
parent | 607ace696b17036a7f23e4c1936b7ed2e87d3647 (diff) |
- Do not expose ::ID from any of the analyses anymore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3416 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Analysis/DataStructure/BottomUpClosure.cpp | 1 | ||||
-rw-r--r-- | lib/Analysis/DataStructure/Local.cpp | 1 | ||||
-rw-r--r-- | lib/Analysis/DataStructure/TopDownClosure.cpp | 1 | ||||
-rw-r--r-- | lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp | 1 | ||||
-rw-r--r-- | lib/Target/SparcV9/LiveVar/FunctionLiveVarInfo.cpp | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp index 2d2a182a4f..2ab97442d1 100644 --- a/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -16,7 +16,6 @@ using std::map; static RegisterAnalysis<BUDataStructures> X("budatastructure", "Bottom-up Data Structure Analysis Closure"); -AnalysisID BUDataStructures::ID = X; // releaseMemory - If the pass pipeline is done with this pass, we can release // our memory... here... diff --git a/lib/Analysis/DataStructure/Local.cpp b/lib/Analysis/DataStructure/Local.cpp index eb3d5b7374..1abc199a9c 100644 --- a/lib/Analysis/DataStructure/Local.cpp +++ b/lib/Analysis/DataStructure/Local.cpp @@ -20,7 +20,6 @@ using std::vector; static RegisterAnalysis<LocalDataStructures> X("datastructure", "Local Data Structure Analysis"); -AnalysisID LocalDataStructures::ID = X; //===----------------------------------------------------------------------===// // GraphBuilder Class diff --git a/lib/Analysis/DataStructure/TopDownClosure.cpp b/lib/Analysis/DataStructure/TopDownClosure.cpp index ca6556d8ff..ca4828d1d4 100644 --- a/lib/Analysis/DataStructure/TopDownClosure.cpp +++ b/lib/Analysis/DataStructure/TopDownClosure.cpp @@ -15,7 +15,6 @@ using std::map; static RegisterAnalysis<TDDataStructures> Y("tddatastructure", "Top-down Data Structure Analysis Closure"); -AnalysisID TDDataStructures::ID = Y; // releaseMemory - If the pass pipeline is done with this pass, we can release // our memory... here... diff --git a/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp b/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp index 3acef1bfd1..e63d96c634 100644 --- a/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp +++ b/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp @@ -17,7 +17,6 @@ static RegisterAnalysis<FunctionLiveVarInfo> X("livevar", "Live Variable Analysis"); -AnalysisID FunctionLiveVarInfo::ID = X; LiveVarDebugLevel_t DEBUG_LV; diff --git a/lib/Target/SparcV9/LiveVar/FunctionLiveVarInfo.cpp b/lib/Target/SparcV9/LiveVar/FunctionLiveVarInfo.cpp index 3acef1bfd1..e63d96c634 100644 --- a/lib/Target/SparcV9/LiveVar/FunctionLiveVarInfo.cpp +++ b/lib/Target/SparcV9/LiveVar/FunctionLiveVarInfo.cpp @@ -17,7 +17,6 @@ static RegisterAnalysis<FunctionLiveVarInfo> X("livevar", "Live Variable Analysis"); -AnalysisID FunctionLiveVarInfo::ID = X; LiveVarDebugLevel_t DEBUG_LV; |