[llvm-commits] CVS: llvm/lib/Transforms/IPO/InlineSimple.cpp

2007-06-25 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/IPO: InlineSimple.cpp updated: 1.86 -> 1.87 --- Log message: fix Transforms/Inline/2007-06-25-WeakInline.ll by not inlining functions with weak linkage. --- Diffs of the changes: (+8 -4) InlineSimple.cpp | 12 1 files changed, 8 inser

[llvm-commits] CVS: llvm/lib/Transforms/IPO/InlineSimple.cpp Inliner.cpp

2007-06-19 Thread Tanya Lattner
Changes in directory llvm/lib/Transforms/IPO: InlineSimple.cpp updated: 1.85 -> 1.86 Inliner.cpp updated: 1.41 -> 1.42 --- Log message: Inliner pass header file was moved. --- Diffs of the changes: (+3 -2) InlineSimple.cpp |3 ++- Inliner.cpp |2 +- 2 files changed, 3 insertio

Re: [llvm-commits] CVS: llvm/lib/Transforms/IPO/InlineSimple.cpp

2007-06-07 Thread Tanya Lattner
Fixed. Thanks! -Tanya On Jun 7, 2007, at 12:14 AM, Duncan Sands wrote: > Missing spaces after "if": > >> + if(GV == 0) > >> + if(InitList == 0) > >> +if(const Function *f = dyn_cast(Elt)) > > Also, in this last "if" you call the function "f" but I guess > "F" would be more consistent. > >

[llvm-commits] CVS: llvm/lib/Transforms/IPO/InlineSimple.cpp

2007-06-07 Thread Tanya Lattner
Changes in directory llvm/lib/Transforms/IPO: InlineSimple.cpp updated: 1.84 -> 1.85 --- Log message: Formating fixes. --- Diffs of the changes: (+4 -4) InlineSimple.cpp |8 1 files changed, 4 insertions(+), 4 deletions(-) Index: llvm/lib/Transforms/IPO/InlineSimple.cpp diff

Re: [llvm-commits] CVS: llvm/lib/Transforms/IPO/InlineSimple.cpp

2007-06-07 Thread Duncan Sands
Missing spaces after "if": > + if(GV == 0) > + if(InitList == 0) > +if(const Function *f = dyn_cast(Elt)) Also, in this last "if" you call the function "f" but I guess "F" would be more consistent. Ciao, Duncan. ___ llvm-commits mailing list l

[llvm-commits] CVS: llvm/lib/Transforms/IPO/InlineSimple.cpp

2007-06-06 Thread Tanya Lattner
Changes in directory llvm/lib/Transforms/IPO: InlineSimple.cpp updated: 1.83 -> 1.84 --- Log message: Instruct the inliner to obey the noinline attribute. Add test case. --- Diffs of the changes: (+43 -1) InlineSimple.cpp | 44 +++- 1 files changed

[llvm-commits] CVS: llvm/lib/Transforms/IPO/InlineSimple.cpp Inliner.cpp Inliner.h

2007-05-06 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/IPO: InlineSimple.cpp updated: 1.82 -> 1.83 Inliner.cpp updated: 1.40 -> 1.41 Inliner.h updated: 1.12 -> 1.13 --- Log message: Fix PR1395: http://llvm.org/PR1395 , by passing the ID correctly --- Diffs of the changes: (+4 -5) InlineSimple.cpp |1

[llvm-commits] CVS: llvm/lib/Transforms/IPO/InlineSimple.cpp

2006-09-09 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/IPO: InlineSimple.cpp updated: 1.73 -> 1.74 --- Log message: Make inlining costs more accurate. --- Diffs of the changes: (+26 -3) InlineSimple.cpp | 29 ++--- 1 files changed, 26 insertions(+), 3 deletions(-) Index: llvm

[llvm-commits] CVS: llvm/lib/Transforms/IPO/InlineSimple.cpp

2006-01-13 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/IPO: InlineSimple.cpp updated: 1.71 -> 1.72 --- Log message: Permit inlining functions that contain dynamic allocations now that InlineFunction handles this case safely. This implements Transforms/Inline/dynamic_alloca_test.ll. --- Diffs of the chang