[llvm-commits] CVS: llvm/tools/gccld/GenerateCode.cpp

2007-02-05 Thread Reid Spencer
Changes in directory llvm/tools/gccld: GenerateCode.cpp updated: 1.69 - 1.70 --- Log message: For PR411: http://llvm.org/PR411 : This patch replaces the SymbolTable class with ValueSymbolTable which does not support types planes. This means that all symbol names in LLVM must now be unique. The

[llvm-commits] CVS: llvm/tools/gccld/GenerateCode.cpp

2007-02-03 Thread Chris Lattner
Changes in directory llvm/tools/gccld: GenerateCode.cpp updated: 1.68 - 1.69 --- Log message: add an instcombine pass to clean up after heavy-lifting IP passes --- Diffs of the changes: (+6 -0) GenerateCode.cpp |6 ++ 1 files changed, 6 insertions(+) Index:

[llvm-commits] CVS: llvm/tools/gccld/GenerateCode.cpp

2007-01-20 Thread Chris Lattner
Changes in directory llvm/tools/gccld: GenerateCode.cpp updated: 1.67 - 1.68 --- Log message: default to emiting an uncompressed .bc file --- Diffs of the changes: (+1 -1) GenerateCode.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/tools/gccld/GenerateCode.cpp

[llvm-commits] CVS: llvm/tools/gccld/GenerateCode.cpp gccld.cpp

2006-12-06 Thread Bill Wendling
Changes in directory llvm/tools/gccld: GenerateCode.cpp updated: 1.66 - 1.67 gccld.cpp updated: 1.114 - 1.115 --- Log message: Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are now cerr, cout, and NullStream resp. --- Diffs of the changes: (+21 -21)

[llvm-commits] CVS: llvm/tools/gccld/GenerateCode.cpp gccld.cpp

2006-11-28 Thread Bill Wendling
Changes in directory llvm/tools/gccld: GenerateCode.cpp updated: 1.65 - 1.66 gccld.cpp updated: 1.111 - 1.112 --- Log message: Replacing std::iostreams with llvm iostreams. Some of these changes involve adding a temporary wrapper around the ostream to make it friendly to functions expecting an

[llvm-commits] CVS: llvm/tools/gccld/GenerateCode.cpp

2006-11-22 Thread Nick Lewycky
Changes in directory llvm/tools/gccld: GenerateCode.cpp updated: 1.64 - 1.65 --- Log message: Update to new predicate simplifier VRP design. Fixes PR966: http://llvm.org/PR966 and PR967: http://llvm.org/PR967 . Remove predicate simplifier from default gcc3 pipeline. New design is too slow to

[llvm-commits] CVS: llvm/tools/gccld/GenerateCode.cpp

2006-09-23 Thread Nick Lewycky
Changes in directory llvm/tools/gccld: GenerateCode.cpp updated: 1.62 - 1.63 --- Log message: Enable 'predsimplify' optimization. --- Diffs of the changes: (+1 -0) GenerateCode.cpp |1 + 1 files changed, 1 insertion(+) Index: llvm/tools/gccld/GenerateCode.cpp diff -u

[llvm-commits] CVS: llvm/tools/gccld/GenerateCode.cpp

2006-09-09 Thread Chris Lattner
Changes in directory llvm/tools/gccld: GenerateCode.cpp updated: 1.61 - 1.62 --- Log message: Move ipsccp pass earlier to clean up obvious bogosities --- Diffs of the changes: (+5 -3) GenerateCode.cpp |8 +--- 1 files changed, 5 insertions(+), 3 deletions(-) Index:

[llvm-commits] CVS: llvm/tools/gccld/GenerateCode.cpp

2006-06-16 Thread Chris Lattner
Changes in directory llvm/tools/gccld: GenerateCode.cpp updated: 1.57 - 1.58 --- Log message: Don't pass target name into TargetData anymore, it is never used or needed. --- Diffs of the changes: (+1 -1) GenerateCode.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm/tools/gccld/GenerateCode.cpp

2006-05-14 Thread Chris Lattner
Changes in directory llvm/tools/gccld: GenerateCode.cpp updated: 1.56 - 1.57 --- Log message: Free memory allocated by copy_env. --- Diffs of the changes: (+3 -1) GenerateCode.cpp |4 +++- 1 files changed, 3 insertions(+), 1 deletion(-) Index: llvm/tools/gccld/GenerateCode.cpp diff

[llvm-commits] CVS: llvm/tools/gccld/GenerateCode.cpp gccld.cpp gccld.h

2005-12-21 Thread Reid Spencer
Changes in directory llvm/tools/gccld: GenerateCode.cpp updated: 1.55 - 1.56 gccld.cpp updated: 1.106 - 1.107 gccld.h updated: 1.17 - 1.18 --- Log message: Implement PR679: http://llvm.cs.uiuc.edu/PR679 : * Changed the -rpath option from cl::opt to cl::list * Changed the interface to

[llvm-commits] CVS: llvm/tools/gccld/GenerateCode.cpp

2005-11-02 Thread Chris Lattner
Changes in directory llvm/tools/gccld: GenerateCode.cpp updated: 1.54 - 1.55 --- Log message: add a hack that fixes: llvm-gcc main.c -Wl,-native -o a.out -g This is important because it used by many configure scripts. John, please pull this onto the 1.6 branch. --- Diffs of the