[llvm-commits] CVS: llvm/test/Regression/CodeGen/ARM/select.ll

2006-08-21 Thread Chris Lattner
Changes in directory llvm/test/Regression/CodeGen/ARM: select.ll updated: 1.3 -> 1.4 --- Log message: This passes. --- Diffs of the changes: (+1 -1) select.ll |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/test/Regression/CodeGen/ARM/select.ll diff -u llvm/test/Reg

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

2006-08-21 Thread Chris Lattner
Changes in directory llvm/include/llvm/CodeGen: LiveInterval.h updated: 1.17 -> 1.18 --- Log message: Switch to using smallvector for liveintervals. This speeds up live interval analysis 11% on kc++. --- Diffs of the changes: (+2 -1) LiveInterval.h |3 ++- 1 files changed, 2 insertion

[llvm-commits] CVS: llvm/include/llvm/ADT/SmallVector.h

2006-08-21 Thread Chris Lattner
Changes in directory llvm/include/llvm/ADT: SmallVector.h updated: 1.14 -> 1.15 --- Log message: add a bunch more operations, including swap, insert, erase, front(), and bugfixes for operator=. --- Diffs of the changes: (+115 -13) SmallVector.h | 128 +

[llvm-commits] CVS: llvm/test/Regression/CodeGen/ARM/select.ll

2006-08-21 Thread Reid Spencer
Changes in directory llvm/test/Regression/CodeGen/ARM: select.ll updated: 1.2 -> 1.3 --- Log message: Use the correct syntax. Note to self: test before committing things! --- Diffs of the changes: (+2 -2) select.ll |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm

[llvm-commits] CVS: llvm/test/Regression/CodeGen/ARM/select.ll

2006-08-21 Thread Reid Spencer
Changes in directory llvm/test/Regression/CodeGen/ARM: select.ll updated: 1.1 -> 1.2 --- Log message: Add a simple RUN line so this doesn't always fail. XFAIL this until Rafael can get a chance to fix it. --- Diffs of the changes: (+2 -0) select.ll |2 ++ 1 files changed, 2 insertions(

[llvm-commits] CVS: llvm/lib/System/Unix/Path.inc

2006-08-21 Thread Reid Spencer
Changes in directory llvm/lib/System/Unix: Path.inc updated: 1.51 -> 1.52 --- Log message: Make an error message a little more intelligible. --- Diffs of the changes: (+1 -1) Path.inc |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/System/Unix/Path.inc diff -u l

[llvm-commits] CVS: llvm/test/Regression/Other/2002-01-31-CallGraph.ll 2002-01-31-PostDomSet-2.ll 2002-01-31-PostDomSet.ll 2002-08-02-DomSetProblem.ll 2003-02-19-LoopInfoNestingBug.ll

2006-08-21 Thread Bill Wendling
Changes in directory llvm/test/Regression/Other: 2002-01-31-CallGraph.ll updated: 1.1 -> 1.2 2002-01-31-PostDomSet-2.ll updated: 1.1 -> 1.2 2002-01-31-PostDomSet.ll updated: 1.2 -> 1.3 2002-08-02-DomSetProblem.ll updated: 1.1 -> 1.2 2003-02-19-LoopInfoNestingBug.ll updated: 1.2 -> 1.3 --- Log me

Re: [llvm-commits] CVS: llvm/test/Regression/CodeGen/ARM/select.ll

2006-08-21 Thread Bill Wendling
Hi, This testcase doesn't have a "RUN" line in it. It's failing the regression tests. -bw ___ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

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

2006-08-21 Thread Chris Lattner
Changes in directory llvm/include/llvm/CodeGen: LiveInterval.h updated: 1.16 -> 1.17 --- Log message: move LiveInterval state all together --- Diffs of the changes: (+3 -1) LiveInterval.h |4 +++- 1 files changed, 3 insertions(+), 1 deletion(-) Index: llvm/include/llvm/CodeGen/LiveIn

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

2006-08-21 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: LiveIntervalAnalysis.cpp updated: 1.163 -> 1.164 --- Log message: Print debug info as: *** Register mapping *** reg 1024 -> %reg1028 reg 1026 -> EAX reg 1027 -> %reg1028 instead of: *** Register mapping *** reg 1024 -> reg 1028 reg 1026 -> reg

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

2006-08-21 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: LiveIntervalAnalysis.cpp updated: 1.164 -> 1.165 --- Log message: Print physreg names symbolically in dumps --- Diffs of the changes: (+3 -2) LiveIntervalAnalysis.cpp |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) Index: llvm/lib/Cod

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

2006-08-21 Thread Jim Laskey
Changes in directory llvm/docs: SourceLevelDebugging.html updated: 1.24 -> 1.25 --- Log message: Update info on mangled names. --- Diffs of the changes: (+9 -3) SourceLevelDebugging.html | 12 +--- 1 files changed, 9 insertions(+), 3 deletions(-) Index: llvm/docs/SourceLevelDeb

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

2006-08-21 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: popup.js updated: 1.1 -> 1.2 test.php updated: 1.17 -> 1.18 --- Log message: A button entitled "Check All" now appears next to the buttons that allow the user to graph long term results. When this button is clicked it will select all the checkboxes i

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

2006-08-21 Thread Rafael Espindola
Changes in directory llvm/lib/Target/ARM: ARMISelDAGToDAG.cpp updated: 1.32 -> 1.33 ARMInstrInfo.td updated: 1.17 -> 1.18 ARMTargetMachine.cpp updated: 1.5 -> 1.6 --- Log message: initial support for select --- Diffs of the changes: (+42 -1) ARMISelDAGToDAG.cpp | 26

[llvm-commits] CVS: llvm/test/Regression/CodeGen/ARM/select.ll

2006-08-21 Thread Rafael Espindola
Changes in directory llvm/test/Regression/CodeGen/ARM: select.ll added (r1.1) --- Log message: initial support for select --- Diffs of the changes: (+15 -0) select.ll | 15 +++ 1 files changed, 15 insertions(+) Index: llvm/test/Regression/CodeGen/ARM/select.ll diff -c /dev/

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

2006-08-21 Thread Jim Laskey
Changes in directory llvm/include/llvm/Support: Dwarf.h updated: 1.9 -> 1.10 --- Log message: Adding new Dwarf constants. --- Diffs of the changes: (+3 -2) Dwarf.h |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) Index: llvm/include/llvm/Support/Dwarf.h diff -u llvm/include

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

2006-08-21 Thread Jim Laskey
Changes in directory llvm/lib/CodeGen: MachineDebugInfo.cpp updated: 1.46 -> 1.47 DwarfWriter.cpp updated: 1.69 -> 1.70 --- Log message: Adding C++ member support. --- Diffs of the changes: (+152 -62) DwarfWriter.cpp | 210 --- MachineD

[llvm-commits] CVS: llvm/lib/Support/Dwarf.cpp

2006-08-21 Thread Jim Laskey
Changes in directory llvm/lib/Support: Dwarf.cpp updated: 1.4 -> 1.5 --- Log message: Adding new Dwarf constants. --- Diffs of the changes: (+1 -0) Dwarf.cpp |1 + 1 files changed, 1 insertion(+) Index: llvm/lib/Support/Dwarf.cpp diff -u llvm/lib/Support/Dwarf.cpp:1.4 llvm/lib/Suppor

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

2006-08-21 Thread Jim Laskey
Changes in directory llvm/docs: SourceLevelDebugging.html updated: 1.23 -> 1.24 --- Log message: Update debugging documents. --- Diffs of the changes: (+13 -1) SourceLevelDebugging.html | 14 +- 1 files changed, 13 insertions(+), 1 deletion(-) Index: llvm/docs/SourceLevelDe

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

2006-08-21 Thread Patrick Jenkins
Changes in directory llvm/utils: NewNightlyTest.pl updated: 1.55 -> 1.56 --- Log message: The new nightly tester should stop outputing a message stating the testresults directory is not present unless the script is run as verbose. --- Diffs of the changes: (+24 -22) NewNightlyTest.pl |

[llvm-commits] CVS: llvm-www/releases/download.html

2006-08-21 Thread Misha Brukman
Changes in directory llvm-www/releases: download.html updated: 1.36 -> 1.37 --- Log message: Lined up all download links, combined long links and anchor text on the same line for readability. No user-visible changes. --- Diffs of the changes: (+46 -130) download.html | 176 ++

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

2006-08-21 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen/SelectionDAG: LegalizeDAG.cpp updated: 1.387 -> 1.388 --- Log message: Fix PR861: http://llvm.org/PR861 --- Diffs of the changes: (+1 -0) LegalizeDAG.cpp |1 + 1 files changed, 1 insertion(+) Index: llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp

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

2006-08-21 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: NightlyTester.php updated: 1.17 -> 1.18 ProgramResults.php updated: 1.7 -> 1.8 fulltest.php updated: 1.14 -> 1.15 test.php updated: 1.16 -> 1.17 --- Log message: Added a new collapsable menu to the brief and full nightly tester pages. This new menu

[llvm-commits] CVS: llvm/lib/VMCore/AsmWriter.cpp

2006-08-21 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: AsmWriter.cpp updated: 1.201 -> 1.202 --- Log message: Fix PR885: http://llvm.org/PR885 --- Diffs of the changes: (+4 -4) AsmWriter.cpp |8 1 files changed, 4 insertions(+), 4 deletions(-) Index: llvm/lib/VMCore/AsmWriter.cpp diff -u ll

[llvm-commits] CVS: llvm/lib/Analysis/ProfileInfoLoaderPass.cpp

2006-08-21 Thread Chris Lattner
Changes in directory llvm/lib/Analysis: ProfileInfoLoaderPass.cpp updated: 1.12 -> 1.13 --- Log message: Fix PR885: http://llvm.org/PR885 --- Diffs of the changes: (+2 -3) ProfileInfoLoaderPass.cpp |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) Index: llvm/lib/Analysis/P

[llvm-commits] CVS: llvm/test/Regression/CodeGen/X86/2006-08-21-ExtraMovInst.ll

2006-08-21 Thread Bill Wendling
Changes in directory llvm/test/Regression/CodeGen/X86: 2006-08-21-ExtraMovInst.ll added (r1.1) --- Log message: Added a check so that if we have two machine instructions in this form MOV R0, R1 MOV R1, R0 the second machine instruction is removed. Added a regression test. --- Diffs

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

2006-08-21 Thread Bill Wendling
Changes in directory llvm/lib/CodeGen: VirtRegMap.cpp updated: 1.69 -> 1.70 --- Log message: Added a check so that if we have two machine instructions in this form MOV R0, R1 MOV R1, R0 the second machine instruction is removed. Added a regression test. --- Diffs of the changes: (+

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

2006-08-21 Thread Rafael Espindola
Changes in directory llvm/lib/Target/ARM: ARMInstrInfo.td updated: 1.16 -> 1.17 --- Log message: add the and instruction --- Diffs of the changes: (+4 -0) ARMInstrInfo.td |4 1 files changed, 4 insertions(+) Index: llvm/lib/Target/ARM/ARMInstrInfo.td diff -u llvm/lib/Target/ARM/