[llvm-commits] CVS: llvm/test/Regression/CodeGen/Alpha/jmp_table.ll

2006-09-25 Thread Andrew Lenharth
Changes in directory llvm/test/Regression/CodeGen/Alpha: jmp_table.ll updated: 1.1 -> 1.2 --- Log message: Fix --- Diffs of the changes: (+2 -2) jmp_table.ll |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/test/Regression/CodeGen/Alpha/jmp_table.ll diff -u llvm/t

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

2006-09-25 Thread Jim Laskey
Changes in directory llvm/lib/CodeGen/SelectionDAG: DAGCombiner.cpp updated: 1.197 -> 1.198 --- Log message: Core antialiasing for load and store. --- Diffs of the changes: (+282 -53) DAGCombiner.cpp | 335 +++- 1 files changed, 282 inser

[llvm-commits] CVS: llvm/lib/Target/README.txt

2006-09-25 Thread Chris Lattner
Changes in directory llvm/lib/Target: README.txt updated: 1.40 -> 1.41 --- Log message: more notes --- Diffs of the changes: (+22 -0) README.txt | 22 ++ 1 files changed, 22 insertions(+) Index: llvm/lib/Target/README.txt diff -u llvm/lib/Target/README.txt:1.40 llvm

[llvm-commits] CVS: llvm-gcc/gcc/llvm-out.c

2006-09-25 Thread John Criswell
Changes in directory llvm-gcc/gcc: llvm-out.c updated: 1.10 -> 1.11 --- Log message: Fix for PR#922. Do not re-assign the input locations when expanding statements; the original GCC code does not do this, and removing this statement generates correct filename output for LLVM debugging intrinsic

[llvm-commits] CVS: llvm/test/Regression/CFrontend/2006-09-25-DebugFilename.c.tr 2006-09-25-DebugFilename.h

2006-09-25 Thread John Criswell
Changes in directory llvm/test/Regression/CFrontend: 2006-09-25-DebugFilename.c.tr added (r1.1) 2006-09-25-DebugFilename.h added (r1.1) --- Log message: Regression test for PR#922. --- Diffs of the changes: (+11 -0) 2006-09-25-DebugFilename.c.tr |5 + 2006-09-25-DebugFilename.h

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

2006-09-25 Thread Jim Laskey
Changes in directory llvm/lib/CodeGen/SelectionDAG: DAGCombiner.cpp updated: 1.198 -> 1.199 --- Log message: Fix chain dropping in load and drop unused stores in ret blocks. --- Diffs of the changes: (+14 -7) DAGCombiner.cpp | 21 ++--- 1 files changed, 14 insertions(+), 7

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

2006-09-25 Thread Jim Laskey
Changes in directory llvm/lib/CodeGen/SelectionDAG: DAGCombiner.cpp updated: 1.199 -> 1.200 --- Log message: Accidental enable of bad code --- Diffs of the changes: (+1 -1) DAGCombiner.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/CodeGen/SelectionDAG/DAGCo

[llvm-commits] CVS: llvm-test/Makefile.tests

2006-09-25 Thread Chris Lattner
Changes in directory llvm-test: Makefile.tests updated: 1.8 -> 1.9 --- Log message: Make llvm-test results more closely match the performance a person would get by running llvm-gcc -O4. In particular, do not run the compile-time optimizer both within llvm-gcc and as a separate gccas invocation

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

2006-09-25 Thread Chris Lattner
Changes in directory llvm/include/llvm/Target: TargetAsmInfo.h updated: 1.3 -> 1.4 --- Log message: order this properly to avoid warnings in TargetAsmInfo.cpp. Add a comment in a format that matches every other ivars in this class. --- Diffs of the changes: (+4 -1) TargetAsmInfo.h |5

[llvm-commits] CVS: llvm/include/llvm/CodeGen/AsmPrinter.h

2006-09-25 Thread Chris Lattner
Changes in directory llvm/include/llvm/CodeGen: AsmPrinter.h updated: 1.48 -> 1.49 --- Log message: Add support for targets that want to do something with the llvm.used list, because they have an aggressive linker that does dead code stripping. --- Diffs of the changes: (+1 -0) AsmPrinter.

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

2006-09-25 Thread Chris Lattner
Changes in directory llvm/include/llvm/Target: TargetAsmInfo.h updated: 1.4 -> 1.5 --- Log message: Add support for targets that want to do something with the llvm.used list, because they have an aggressive linker that does dead code stripping. --- Diffs of the changes: (+8 -0) TargetAsmIn

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

2006-09-25 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: AsmPrinter.cpp updated: 1.98 -> 1.99 --- Log message: Add support for targets that want to do something with the llvm.used list, because they have an aggressive linker that does dead code stripping. --- Diffs of the changes: (+21 -2) AsmPrinter.cpp |

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

2006-09-25 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCTargetAsmInfo.cpp updated: 1.2 -> 1.3 --- Log message: Compile: int x __attribute__((used)); to: .data .comm _x,4 ; 'x' .no_dead_strip _x on both x86 and ppc darwin targets. --- Diffs of the changes: (+1 -0)

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

2006-09-25 Thread Chris Lattner
Changes in directory llvm/lib/Target/X86: X86TargetAsmInfo.cpp updated: 1.2 -> 1.3 --- Log message: Compile: int x __attribute__((used)); to: .data .comm _x,4 ; 'x' .no_dead_strip _x on both x86 and ppc darwin targets. --- Diffs of the changes: (+1 -0) X86

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

2006-09-25 Thread Chris Lattner
Changes in directory llvm/lib/Target: TargetAsmInfo.cpp updated: 1.3 -> 1.4 --- Log message: Add support for targets that want to do something with the llvm.used list, because they have an aggressive linker that does dead code stripping. --- Diffs of the changes: (+1 -0) TargetAsmInfo.cpp

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

2006-09-25 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: MachineBasicBlock.cpp updated: 1.28 -> 1.29 --- Log message: print the preds of each MBB --- Diffs of the changes: (+8 -0) MachineBasicBlock.cpp |8 1 files changed, 8 insertions(+) Index: llvm/lib/CodeGen/MachineBasicBlock.cpp diff -u

[llvm-commits] CVS: llvm/test/Regression/CodeGen/X86/darwin-no-dead-strip.ll

2006-09-25 Thread Chris Lattner
Changes in directory llvm/test/Regression/CodeGen/X86: darwin-no-dead-strip.ll added (r1.1) --- Log message: test that the no_dead_strip directive is emitted on darwin-x86 --- Diffs of the changes: (+7 -0) darwin-no-dead-strip.ll |7 +++ 1 files changed, 7 insertions(+) Index: ll

[llvm-commits] CVS: llvm/lib/Target/X86/X86ATTAsmPrinter.cpp X86AsmPrinter.cpp X86AsmPrinter.h X86ISelLowering.cpp X86IntelAsmPrinter.cpp X86MachineFunctionInfo.h

2006-09-25 Thread Chris Lattner
Changes in directory llvm/lib/Target/X86: X86ATTAsmPrinter.cpp updated: 1.64 -> 1.65 X86AsmPrinter.cpp updated: 1.199 -> 1.200 X86AsmPrinter.h updated: 1.32 -> 1.33 X86ISelLowering.cpp updated: 1.263 -> 1.264 X86IntelAsmPrinter.cpp updated: 1.57 -> 1.58 X86MachineFunctionInfo.h updated: 1.3 -> 1