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

2007-05-02 Thread Lauro Ramos Venancio
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/An

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

2006-12-16 Thread Bill Wendling
Changes in directory llvm/lib/Analysis/IPA: CallGraph.cpp updated: 1.62 -> 1.63 --- Log message: Added an automatic cast to "std::ostream*" etc. from OStream. We then can rework the hacks that had us passing OStream in. We pass in std::ostream* instead, check for null, and then dispatch to the

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

2006-12-05 Thread Chris Lattner
Changes in directory llvm/lib/Analysis/IPA: CallGraph.cpp updated: 1.60 -> 1.61 --- Log message: straighten out various memory ownership issues in the callgraph stuff. This fixes Regression/Other/2002-01-31-CallGraph.ll. --- Diffs of the changes: (+2 -3) CallGraph.cpp |5 ++--- 1 files

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

2006-12-04 Thread Chris Lattner
Changes in directory llvm/lib/Analysis/IPA: CallGraph.cpp updated: 1.59 -> 1.60 --- Log message: Add a comment and fix a memory leak. Thanks to Vikram for pointing this out. --- Diffs of the changes: (+5 -4) CallGraph.cpp |9 + 1 files changed, 5 insertions(+), 4 deletions(-)

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

2006-10-09 Thread Chris Lattner
Changes in directory llvm/lib/Analysis/IPA: CallGraph.cpp updated: 1.57 -> 1.58 --- Log message: Fix a bug pointed out by Zhongxing Xu --- Diffs of the changes: (+1 -1) CallGraph.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Analysis/IPA/CallGraph.cpp diff

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

2006-07-12 Thread Chris Lattner
Changes in directory llvm/lib/Analysis/IPA: CallGraph.cpp updated: 1.54 -> 1.55 GlobalsModRef.cpp updated: 1.18 -> 1.19 --- Log message: Change the callgraph representation to store the callsite along with the target CG node. This allows the inliner to properly update the callgraph when using

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

2006-06-07 Thread Reid Spencer
Changes in directory llvm/lib/Analysis/IPA: CallGraph.cpp updated: 1.53 -> 1.54 FindUsedTypes.cpp updated: 1.35 -> 1.36 --- Log message: For PR780: http://llvm.cs.uiuc.edu/PR780 : 1. Fix the macros in IncludeFile.h to put everything in the llvm namespace 2. Replace the previous explicit mechani

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

2006-06-01 Thread Chris Lattner
Changes in directory llvm/lib/Analysis/IPA: CallGraph.cpp updated: 1.52 -> 1.53 --- Log message: Fix -pedantic warning --- Diffs of the changes: (+1 -1) CallGraph.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Analysis/IPA/CallGraph.cpp diff -u llvm/lib/Ana

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

2006-06-01 Thread Reid Spencer
Changes in directory llvm/lib/Analysis/IPA: CallGraph.cpp updated: 1.51 -> 1.52 FindUsedTypes.cpp updated: 1.34 -> 1.35 --- Log message: Change from using a stub function to a stub variable for passing to the IncludeFile hack to ensure linkage of analysis passes. This works around some -pedanti

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

2006-01-14 Thread Chris Lattner
Changes in directory llvm/lib/Analysis/IPA: CallGraph.cpp updated: 1.50 -> 1.51 --- Log message: Add a new CallGraph::getOrInsertFunction for clients to use when updating the callgraph. --- Diffs of the changes: (+19 -16) CallGraph.cpp | 35 +++ 1 files ch

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

2006-01-14 Thread Chris Lattner
Changes in directory llvm/lib/Analysis/IPA: CallGraph.cpp updated: 1.49 -> 1.50 --- Log message: add a dump method to CallGraph --- Diffs of the changes: (+4 -0) CallGraph.cpp |4 1 files changed, 4 insertions(+) Index: llvm/lib/Analysis/IPA/CallGraph.cpp diff -u llvm/lib/Analys

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

2005-12-21 Thread Chris Lattner
Changes in directory llvm/lib/Analysis/IPA: CallGraph.cpp updated: 1.48 -> 1.49 --- Log message: Separate the call graph implementation from its interface. This implements the rough idea sketched out in http://nondot.org/sabre/LLVMNotes/CallGraphClass.txt, allowing new spiffy implementations