[llvm-commits] CVS: llvm/tools/lto/Makefile lto.cpp

2006-08-03 Thread Devang Patel
Changes in directory llvm/tools/lto: Makefile added (r1.1) lto.cpp added (r1.1) --- Log message: Add new tool, lto, to do link time optimization. This tool installs dynamic library that linker can use to optimize llvm byte codes at link time. --- Diffs of the changes: (+398 -0) Makefile |

[llvm-commits] CVS: llvm/include/llvm/LinkTimeOptimizer.h

2006-08-03 Thread Devang Patel
Changes in directory llvm/include/llvm: LinkTimeOptimizer.h added (r1.1) --- Log message: Add new tool, lto, to do link time optimization. This tool installs dynamic library that linker can use to optimize llvm byte codes at link time. --- Diffs of the changes: (+99 -0) LinkTimeOptimizer.h

[llvm-commits] CVS: llvm/tools/lto/Makefile

2006-08-03 Thread Devang Patel
Changes in directory llvm/tools/lto: Makefile updated: 1.1 -> 1.2 --- Log message: Remove ARM for the moment since it is a work in progress. --- Diffs of the changes: (+0 -6) Makefile |6 -- 1 files changed, 6 deletions(-) Index: llvm/tools/lto/Makefile diff -u llvm/tools/lto/Mak

[llvm-commits] CVS: llvm/utils/NewNightlyTest.pl

2006-08-03 Thread Patrick Jenkins
Changes in directory llvm/utils: NewNightlyTest.pl updated: 1.38 -> 1.39 --- Log message: One of the directories we were searching in for .o and .a files was wrong. We now search /lib instead of /libs. --- Diffs of the changes: (+2 -2) NewNightlyTest.pl |4 ++-- 1 files changed, 2 ins

[llvm-commits] CVS: llvm/include/llvm/LinkTimeOptimizer.h

2006-08-03 Thread Devang Patel
Changes in directory llvm/include/llvm: LinkTimeOptimizer.h updated: 1.1 -> 1.2 --- Log message: Fix typo. --- Diffs of the changes: (+1 -1) LinkTimeOptimizer.h |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/include/llvm/LinkTimeOptimizer.h diff -u llvm/include/llv

[llvm-commits] CVS: llvm/tools/llc/Makefile

2006-08-03 Thread Chris Lattner
Changes in directory llvm/tools/llc: Makefile updated: 1.87 -> 1.88 --- Log message: Now that SparcV9 is gone, this logical can be simplified significantly. --- Diffs of the changes: (+1 -39) Makefile | 40 +--- 1 files changed, 1 insertion(+), 39 dele

[llvm-commits] CVS: llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp ARMInstrInfo.td

2006-08-03 Thread Rafael Espindola
Changes in directory llvm/lib/Target/ARM: ARMISelDAGToDAG.cpp updated: 1.19 -> 1.20 ARMInstrInfo.td updated: 1.11 -> 1.12 --- Log message: add and use ARMISD::RET_FLAG --- Diffs of the changes: (+10 -9) ARMISelDAGToDAG.cpp | 15 +++ ARMInstrInfo.td |4 +++- 2 files ch

[llvm-commits] CVS: nightlytest-serverside/test.php fulltest.php

2006-08-03 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: test.php updated: 1.12 -> 1.13 fulltest.php updated: 1.9 -> 1.10 --- Log message: Fixed the coloring of cells in teh file size information table, also formatted the sum total size of the files so it is easily readable. --- Diffs of the changes:

[llvm-commits] CVS: llvm/tools/lto/Makefile

2006-08-03 Thread Devang Patel
Changes in directory llvm/tools/lto: Makefile updated: 1.2 -> 1.3 --- Log message: Simplify. Use addprefix. --- Diffs of the changes: (+5 -37) Makefile | 42 +- 1 files changed, 5 insertions(+), 37 deletions(-) Index: llvm/tools/lto/Makefile diff

[llvm-commits] CVS: llvm/tools/lto/lto.cpp

2006-08-03 Thread Devang Patel
Changes in directory llvm/tools/lto: lto.cpp updated: 1.1 -> 1.2 --- Log message: Fix typo. --- Diffs of the changes: (+1 -1) lto.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/tools/lto/lto.cpp diff -u llvm/tools/lto/lto.cpp:1.1 llvm/tools/lto/lto.cpp:1.2 ---

[llvm-commits] CVS: llvm/tools/lto/Makefile

2006-08-03 Thread Devang Patel
Changes in directory llvm/tools/lto: Makefile updated: 1.3 -> 1.4 --- Log message: Make it fit into 80-columns. --- Diffs of the changes: (+1 -1) Makefile |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/tools/lto/Makefile diff -u llvm/tools/lto/Makefile:1.3 llvm/too

[llvm-commits] CVS: llvm/lib/Target/X86/X86AsmPrinter.h X86RegisterInfo.td

2006-08-03 Thread Jim Laskey
Changes in directory llvm/lib/Target/X86: X86AsmPrinter.h updated: 1.25 -> 1.26 X86RegisterInfo.td updated: 1.35 -> 1.36 --- Log message: Get darwin intel debugging up and running. --- Diffs of the changes: (+54 -54) X86AsmPrinter.h| 28 +- X86RegisterInfo.td | 80 +

[llvm-commits] CVS: llvm/lib/Target/MRegisterInfo.cpp

2006-08-03 Thread Jim Laskey
Changes in directory llvm/lib/Target: MRegisterInfo.cpp updated: 1.15 -> 1.16 --- Log message: Get darwin intel debugging up and running. --- Diffs of the changes: (+6 -1) MRegisterInfo.cpp |7 ++- 1 files changed, 6 insertions(+), 1 deletion(-) Index: llvm/lib/Target/MRegisterIn

[llvm-commits] CVS: llvm/lib/Target/IA64/IA64.h

2006-08-03 Thread Chris Lattner
Changes in directory llvm/lib/Target/IA64: IA64.h updated: 1.5 -> 1.6 --- Log message: remove a dead proto --- Diffs of the changes: (+0 -1) IA64.h |1 - 1 files changed, 1 deletion(-) Index: llvm/lib/Target/IA64/IA64.h diff -u llvm/lib/Target/IA64/IA64.h:1.5 llvm/lib/Target/IA64/IA6

[llvm-commits] CVS: llvm/include/llvm/Target/TargetFrameInfo.h

2006-08-03 Thread Chris Lattner
Changes in directory llvm/include/llvm/Target: TargetFrameInfo.h updated: 1.20 -> 1.21 --- Log message: remove some more dead sparcv9 support stuff --- Diffs of the changes: (+0 -25) TargetFrameInfo.h | 25 - 1 files changed, 25 deletions(-) Index: llvm/include/

[llvm-commits] CVS: llvm/lib/Target/TargetFrameInfo.cpp

2006-08-03 Thread Chris Lattner
Changes in directory llvm/lib/Target: TargetFrameInfo.cpp updated: 1.7 -> 1.8 --- Log message: remove some more dead sparcv9 support stuff --- Diffs of the changes: (+1 -63) TargetFrameInfo.cpp | 64 1 files changed, 1 insertion(+), 63

[llvm-commits] CVS: llvm/include/llvm/Target/MRegisterInfo.h

2006-08-03 Thread Chris Lattner
Changes in directory llvm/include/llvm/Target: MRegisterInfo.h updated: 1.79 -> 1.80 --- Log message: update comment --- Diffs of the changes: (+2 -8) MRegisterInfo.h | 10 ++ 1 files changed, 2 insertions(+), 8 deletions(-) Index: llvm/include/llvm/Target/MRegisterInfo.h diff

[llvm-commits] CVS: llvm/utils/GenLibDeps.pl

2006-08-03 Thread Reid Spencer
Changes in directory llvm/utils: GenLibDeps.pl updated: 1.11 -> 1.12 --- Log message: Print an error message if the lib directory (first argument) is not a directory. --- Diffs of the changes: (+3 -2) GenLibDeps.pl |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) Index: ll

[llvm-commits] CVS: nightlytest-serverside/test.php

2006-08-03 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: test.php updated: 1.13 -> 1.14 --- Log message: We now display Significant changes in file size the same way display significant changes in performance. --- Diffs of the changes: (+274 -249) test.php | 523 +---

[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp

2006-08-03 Thread Jim Laskey
Changes in directory llvm/lib/CodeGen/SelectionDAG: ScheduleDAGSimple.cpp updated: 1.16 -> 1.17 --- Log message: Copy the liveins for the first block. PR859: http://llvm.org/PR859 --- Diffs of the changes: (+14 -0) ScheduleDAGSimple.cpp | 14 ++ 1 files changed, 14 insertio

[llvm-commits] CVS: llvm/test/Regression/CodeGen/Generic/2006-07-03-schedulers.ll

2006-08-03 Thread Jim Laskey
Changes in directory llvm/test/Regression/CodeGen/Generic: 2006-07-03-schedulers.ll added (r1.1) --- Log message: Make all the schedulers continue to work. --- Diffs of the changes: (+40 -0) 2006-07-03-schedulers.ll | 40 1 files changed, 40 inser

[llvm-commits] CVS: llvm/test/Regression/CodeGen/Generic/2006-07-03-schedulers.ll

2006-08-03 Thread Jim Laskey
Changes in directory llvm/test/Regression/CodeGen/Generic: 2006-07-03-schedulers.ll updated: 1.1 -> 1.2 --- Log message: Applying for all. --- Diffs of the changes: (+6 -6) 2006-07-03-schedulers.ll | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) Index: llvm/test/Reg

[llvm-commits] CVS: nightlytest-serverside/fulltest.php

2006-08-03 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: fulltest.php updated: 1.10 -> 1.11 --- Log message: Since we only print out the important eye catching file size changes in the brief test page, i made it so all file sizes and their changes are printed out in the detailed page. --- Diffs of th

[llvm-commits] CVS: llvm/test/Regression/Transforms/SimplifyCFG/2006-08-03-Crash.ll

2006-08-03 Thread Chris Lattner
Changes in directory llvm/test/Regression/Transforms/SimplifyCFG: 2006-08-03-Crash.ll added (r1.1) --- Log message: new testcase for pr867: http://llvm.org/PR867 --- Diffs of the changes: (+103 -0) 2006-08-03-Crash.ll | 103 1 files ch

[llvm-commits] CVS: llvm/lib/Transforms/Utils/SimplifyCFG.cpp

2006-08-03 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Utils: SimplifyCFG.cpp updated: 1.98 -> 1.99 --- Log message: Fix PR867: http://llvm.org/PR867 (and maybe 868) and testcsae: Transforms/SimplifyCFG/2006-08-03-Crash.ll --- Diffs of the changes: (+25 -6) SimplifyCFG.cpp | 31 +

[llvm-commits] CVS: llvm/tools/llvm-config/llvm-config.in.in

2006-08-03 Thread Reid Spencer
Changes in directory llvm/tools/llvm-config: llvm-config.in.in updated: 1.19 -> 1.20 --- Log message: Fix a typo in the name of expand_dependencies. Make the dependency line pattern match handle white space better. --- Diffs of the changes: (+4 -4) llvm-config.in.in |8 1 fil

[llvm-commits] CVS: llvm/tools/llvm-config/Makefile find-cycles.pl

2006-08-03 Thread Reid Spencer
Changes in directory llvm/tools/llvm-config: Makefile updated: 1.13 -> 1.14 find-cycles.pl updated: 1.4 -> 1.5 --- Log message: For PR845: http://llvm.org/PR845 : Enable the makefile check on the result of find-cycles.pl. LLVM is now cycle free and we intend to keep it that way. This patch will

[llvm-commits] CVS: llvm/docs/GettingStarted.html

2006-08-03 Thread Chris Lattner
Changes in directory llvm/docs: GettingStarted.html updated: 1.140 -> 1.141 --- Log message: updated CVS server location --- Diffs of the changes: (+5 -5) GettingStarted.html | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) Index: llvm/docs/GettingStarted.html diff -u

[llvm-commits] CVS: llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp

2006-08-03 Thread Rafael Espindola
Changes in directory llvm/lib/Target/ARM: ARMISelDAGToDAG.cpp updated: 1.20 -> 1.21 --- Log message: Bug fix: always generate a RET_FLAG in LowerRET fixes ret_null.ll and call.ll --- Diffs of the changes: (+1 -1) ARMISelDAGToDAG.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-)