summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/LiveVar
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-27 01:12:15 +0000
committerChris Lattner <sabre@nondot.org>2002-07-27 01:12:15 +0000
commit96a0dfa33e8469ef18866d1d89708af18929e38e (patch)
treed5a653ca0e77dbb4285ac095171397badafe1214 /llvm/lib/Analysis/LiveVar
parent5768f01926dd07c0a863fa03035224e14d9b4508 (diff)
downloadbcm5719-llvm-96a0dfa33e8469ef18866d1d89708af18929e38e.tar.gz
bcm5719-llvm-96a0dfa33e8469ef18866d1d89708af18929e38e.zip
* Standardize how analysis results/passes as printed with the print() virtual
methods * Eliminate AnalysisID: Now it is just a typedef for const PassInfo* * Simplify how AnalysisID's are initialized * Eliminate Analysis/Writer.cpp/.h: incorporate printing functionality into the analyses themselves. llvm-svn: 3115
Diffstat (limited to 'llvm/lib/Analysis/LiveVar')
-rw-r--r--llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp b/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp
index e730f49e692..3acef1bfd18 100644
--- a/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp
+++ b/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp
@@ -17,7 +17,7 @@
static RegisterAnalysis<FunctionLiveVarInfo>
X("livevar", "Live Variable Analysis");
-AnalysisID FunctionLiveVarInfo::ID(AnalysisID::create<FunctionLiveVarInfo>());
+AnalysisID FunctionLiveVarInfo::ID = X;
LiveVarDebugLevel_t DEBUG_LV;
OpenPOWER on IntegriCloud