[llvm-commits] CVS: llvm/lib/Analysis/IPA/CallGraph.cpp

Lauro Ramos Venancio lauro.venancio at gmail.com
Wed May 2 13:38:15 PDT 2007



Changes in directory llvm/lib/Analysis/IPA:

CallGraph.cpp updated: 1.66 -> 1.67
---
Log message:

Fix build error.


---
Diffs of the changes:  (+4 -2)

 CallGraph.cpp |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)


Index: llvm/lib/Analysis/IPA/CallGraph.cpp
diff -u llvm/lib/Analysis/IPA/CallGraph.cpp:1.66 llvm/lib/Analysis/IPA/CallGraph.cpp:1.67
--- llvm/lib/Analysis/IPA/CallGraph.cpp:1.66	Tue May  1 16:15:46 2007
+++ llvm/lib/Analysis/IPA/CallGraph.cpp	Wed May  2 15:37:47 2007
@@ -190,14 +190,16 @@
   }
 };
 
-const int CallGraph::ID = 0;
+
 RegisterAnalysisGroup<CallGraph> X("Call Graph");
-const int BasicCallGraph::ID = 0;
 RegisterPass<BasicCallGraph> Y("basiccg", "Basic CallGraph Construction");
 RegisterAnalysisGroup<CallGraph, true> Z(Y);
 
 } //End anonymous namespace
 
+const int CallGraph::ID = 0;
+const int BasicCallGraph::ID = 0;
+
 void CallGraph::initialize(Module &M) {
   Mod = &M;
 }






More information about the llvm-commits mailing list