diff options
Diffstat (limited to 'llvm/lib/Analysis')
4 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp index 2d2a182a4f5..2ab97442d18 100644 --- a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/llvm/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/llvm/lib/Analysis/DataStructure/Local.cpp b/llvm/lib/Analysis/DataStructure/Local.cpp index eb3d5b7374a..1abc199a9c6 100644 --- a/llvm/lib/Analysis/DataStructure/Local.cpp +++ b/llvm/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/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp b/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp index ca6556d8ffa..ca4828d1d4b 100644 --- a/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp +++ b/llvm/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/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp b/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp index 3acef1bfd18..e63d96c634e 100644 --- a/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp +++ b/llvm/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; |