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

2006-11-06 Thread Evan Cheng
Changes in directory llvm/lib/CodeGen/SelectionDAG: DAGCombiner.cpp updated: 1.237 -> 1.238 --- Log message: Add comment. --- Diffs of the changes: (+10 -4) DAGCombiner.cpp | 14 ++ 1 files changed, 10 insertions(+), 4 deletions(-) Index: llvm/lib/CodeGen/SelectionDAG/DAGCom

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

2006-11-06 Thread Jim Laskey
Changes in directory llvm/lib/CodeGen: MachineDebugInfo.cpp updated: 1.53 -> 1.54 --- Log message: D'oh - reversed logic. --- Diffs of the changes: (+1 -1) MachineDebugInfo.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/CodeGen/MachineDebugInfo.cpp diff -u l

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

2006-11-06 Thread Jim Laskey
Changes in directory llvm/lib/CodeGen: DwarfWriter.cpp updated: 1.96 -> 1.97 --- Log message: Tab interferes with uniqueness. NOTE: There doesn't seem to be consistency for whether a leading tab is present in a section heading. --- Diffs of the changes: (+1 -1) DwarfWriter.cpp |2 +- 1

[llvm-commits] CVS: llvm/include/llvm/Support/PatternMatch.h

2006-11-06 Thread Reid Spencer
Changes in directory llvm/include/llvm/Support: PatternMatch.h updated: 1.11 -> 1.12 --- Log message: Fix a small bug noticed on code review. --- Diffs of the changes: (+1 -1) PatternMatch.h |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/include/llvm/Support/Patter

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

2006-11-06 Thread Chris Lattner
Changes in directory llvm/lib/Target: README.txt updated: 1.45 -> 1.46 --- Log message: add a note --- Diffs of the changes: (+16 -0) README.txt | 16 1 files changed, 16 insertions(+) Index: llvm/lib/Target/README.txt diff -u llvm/lib/Target/README.txt:1.45 llvm/lib/T

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

2006-11-06 Thread Evan Cheng
Changes in directory llvm/lib/CodeGen/SelectionDAG: ScheduleDAGRRList.cpp updated: 1.20 -> 1.21 --- Log message: Remove dead code; added a missing null ptr check. --- Diffs of the changes: (+1 -32) ScheduleDAGRRList.cpp | 33 + 1 files changed, 1 insertion(

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

2006-11-06 Thread Chris Lattner
Changes in directory llvm/include/llvm/Target: TargetInstrInfo.h updated: 1.102 -> 1.103 --- Log message: add a flag so that predicated instructions can be recognized by branch folding --- Diffs of the changes: (+8 -0) TargetInstrInfo.h |8 1 files changed, 8 insertions(+) I

[llvm-commits] CVS: llvm/utils/TableGen/CodeGenInstruction.h CodeGenTarget.cpp InstrInfoEmitter.cpp

2006-11-06 Thread Chris Lattner
Changes in directory llvm/utils/TableGen: CodeGenInstruction.h updated: 1.21 -> 1.22 CodeGenTarget.cpp updated: 1.73 -> 1.74 InstrInfoEmitter.cpp updated: 1.47 -> 1.48 --- Log message: recognize ppc's blr instruction as predicated --- Diffs of the changes: (+4 -0) CodeGenInstruction.h |

[llvm-commits] CVS: llvm/utils/TableGen/CodeGenInstruction.h CodeGenTarget.cpp InstrInfoEmitter.cpp InstrInfoEmitter.h

2006-11-06 Thread Chris Lattner
Changes in directory llvm/utils/TableGen: CodeGenInstruction.h updated: 1.22 -> 1.23 CodeGenTarget.cpp updated: 1.74 -> 1.75 InstrInfoEmitter.cpp updated: 1.48 -> 1.49 InstrInfoEmitter.h updated: 1.14 -> 1.15 --- Log message: simplify the way operand flags and constraints are handled, making it

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

2006-11-06 Thread Chris Lattner
Changes in directory llvm/include/llvm/Target: TargetInstrInfo.h updated: 1.103 -> 1.104 --- Log message: Add a new operand flag to mark which operand is the first predicate operand of an M_PREDICATED instruction. --- Diffs of the changes: (+5 -0) TargetInstrInfo.h |5 + 1 files ch

[llvm-commits] CVS: llvm/utils/TableGen/InstrInfoEmitter.cpp

2006-11-06 Thread Chris Lattner
Changes in directory llvm/utils/TableGen: InstrInfoEmitter.cpp updated: 1.49 -> 1.50 --- Log message: Mark predicate operands as such in operand info. --- Diffs of the changes: (+4 -0) InstrInfoEmitter.cpp |4 1 files changed, 4 insertions(+) Index: llvm/utils/TableGen/InstrInfo

[llvm-commits] CVS: llvm/utils/TableGen/CodeGenTarget.cpp

2006-11-06 Thread Chris Lattner
Changes in directory llvm/utils/TableGen: CodeGenTarget.cpp updated: 1.75 -> 1.76 --- Log message: emit TIED_TO correctly --- Diffs of the changes: (+2 -2) CodeGenTarget.cpp |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/utils/TableGen/CodeGenTarget.cpp diff -u

[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCInstrFormats.td

2006-11-06 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCInstrFormats.td updated: 1.80 -> 1.81 --- Log message: fix encoding of BLR --- Diffs of the changes: (+2 -2) PPCInstrFormats.td |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/lib/Target/PowerPC/PPCInstrFormats.td

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

2006-11-06 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen/SelectionDAG: LegalizeDAG.cpp updated: 1.416 -> 1.417 --- Log message: Fix PR988: http://llvm.org/PR988 and CodeGen/Generic/2006-11-06-MemIntrinsicExpand.ll. The low part goes in the first operand of expandop, not the second one. --- Diffs of the change

[llvm-commits] CVS: llvm/test/Regression/CodeGen/Generic/2006-11-06-MemIntrinsicExpand.ll

2006-11-06 Thread Chris Lattner
Changes in directory llvm/test/Regression/CodeGen/Generic: 2006-11-06-MemIntrinsicExpand.ll updated: 1.1 -> 1.2 --- Log message: wrong bug # --- Diffs of the changes: (+1 -1) 2006-11-06-MemIntrinsicExpand.ll |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/test/Regre

[llvm-commits] CVS: llvm/test/Regression/CodeGen/Generic/2006-11-06-MemIntrinsicExpand.ll

2006-11-06 Thread Chris Lattner
Changes in directory llvm/test/Regression/CodeGen/Generic: 2006-11-06-MemIntrinsicExpand.ll added (r1.1) --- Log message: new testcase --- Diffs of the changes: (+12 -0) 2006-11-06-MemIntrinsicExpand.ll | 12 1 files changed, 12 insertions(+) Index: llvm/test/Regression/Co

[llvm-commits] CVS: llvm/autoconf/configure.ac

2006-11-06 Thread Tanya Lattner
Changes in directory llvm/autoconf: configure.ac updated: 1.249 -> 1.250 --- Log message: Bumping version number --- Diffs of the changes: (+1 -1) configure.ac |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/autoconf/configure.ac diff -u llvm/autoconf/configure.ac:1

[llvm-commits] [release_19] CVS: llvm/autoconf/configure.ac

2006-11-06 Thread Tanya Lattner
Changes in directory llvm/autoconf: configure.ac updated: 1.249 -> 1.249.2.1 --- Log message: This is the 1.9 release --- Diffs of the changes: (+1 -1) configure.ac |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/autoconf/configure.ac diff -u llvm/autoconf/configure

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

2006-11-06 Thread Reid Spencer
Changes in directory llvm/lib/CodeGen: DwarfWriter.cpp updated: 1.97 -> 1.98 --- Log message: Unbreak X86/ELF Debugging. Somehow this line got lost in Jim's cleanup. --- Diffs of the changes: (+2 -0) DwarfWriter.cpp |2 ++ 1 files changed, 2 insertions(+) Index: llvm/lib/CodeGen/Dwar

[llvm-commits] CVS: llvm/test/Regression/DebugInfo/

2006-11-06 Thread LLVM
Changes in directory llvm/test/Regression/DebugInfo: --- Log message: Directory /var/cvs/llvm/llvm/test/Regression/DebugInfo added to the repository --- Diffs of the changes: (+0 -0) 0 files changed ___ llvm-commits mailing list llvm-commits@c

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

2006-11-06 Thread Chris Lattner
Changes in directory llvm-test: Makefile.programs updated: 1.235 -> 1.236 --- Log message: regalloc hack = llc-beta tonight. --- Diffs of the changes: (+4 -2) Makefile.programs |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) Index: llvm-test/Makefile.programs diff -u llvm

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

2006-11-06 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: LiveIntervalAnalysis.cpp updated: 1.189 -> 1.190 --- Log message: Add a new llcbeta option. This speeds up viterbi from 12.34 to 8.76s on X86. If happy, I'll enable this by default. --- Diffs of the changes: (+19 -4) LiveIntervalAnalysis.cpp | 23

[llvm-commits] CVS: llvm/test/Regression/DebugInfo/.cvsignore

2006-11-06 Thread Reid Spencer
Changes in directory llvm/test/Regression/DebugInfo: .cvsignore added (r1.1) --- Log message: Ignore the Output dir. --- Diffs of the changes: (+1 -0) .cvsignore |1 + 1 files changed, 1 insertion(+) Index: llvm/test/Regression/DebugInfo/.cvsignore diff -c /dev/null llvm/test/Regress

[llvm-commits] CVS: llvm/test/Regression/DebugInfo/2006-11-06-StackTrace.cpp dg.exp

2006-11-06 Thread Reid Spencer
Changes in directory llvm/test/Regression/DebugInfo: 2006-11-06-StackTrace.cpp added (r1.1) dg.exp added (r1.1) --- Log message: Add a test case for making sure gdb can get a stack trace with our debug information. --- Diffs of the changes: (+32 -0) 2006-11-06-StackTrace.cpp | 29 +++