[llvm-commits] CVS: llvm/lib/Transforms/Scalar/InstructionCombining.cpp

2007-04-11 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Scalar: InstructionCombining.cpp updated: 1.739 - 1.740 --- Log message: canonicalize (x u 2147483648) - (x s -1) and (x u 2147483647) - (x s 0) --- Diffs of the changes: (+32 -25) InstructionCombining.cpp | 57

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

2007-04-11 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen/SelectionDAG: DAGCombiner.cpp updated: 1.287 - 1.288 --- Log message: don't create shifts by zero, fix some problems with my previous patch --- Diffs of the changes: (+7 -3) DAGCombiner.cpp | 10 +++--- 1 files changed, 7 insertions(+), 3

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

2007-04-11 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen/SelectionDAG: DAGCombiner.cpp updated: 1.288 - 1.289 --- Log message: Fix this harder. --- Diffs of the changes: (+19 -12) DAGCombiner.cpp | 31 +++ 1 files changed, 19 insertions(+), 12 deletions(-) Index:

[llvm-commits] CVS: llvm/test/Transforms/InstCombine/icmp.ll

2007-04-11 Thread Chris Lattner
Changes in directory llvm/test/Transforms/InstCombine: icmp.ll added (r1.1) --- Log message: new testcase --- Diffs of the changes: (+17 -0) icmp.ll | 17 + 1 files changed, 17 insertions(+) Index: llvm/test/Transforms/InstCombine/icmp.ll diff -c /dev/null

[llvm-commits] CVS: llvm/lib/Transforms/Scalar/InstructionCombining.cpp

2007-04-11 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Scalar: InstructionCombining.cpp updated: 1.740 - 1.741 --- Log message: Simplify some comparisons to arithmetic, this implements: Transforms/InstCombine/icmp.ll --- Diffs of the changes: (+27 -0) InstructionCombining.cpp | 27

[llvm-commits] CVS: llvm/lib/Transforms/Scalar/InstructionCombining.cpp

2007-04-11 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Scalar: InstructionCombining.cpp updated: 1.741 - 1.742 --- Log message: Turn stuff like: icmp slt i32 %X, 0 ; i1:0 [#uses=1] sext i1 %0 to i32 ; i32:1 [#uses=1] into: %X.lobit = ashr i32 %X, 31

[llvm-commits] CVS: llvm/test/Transforms/InstCombine/icmp.ll

2007-04-11 Thread Chris Lattner
Changes in directory llvm/test/Transforms/InstCombine: icmp.ll updated: 1.1 - 1.2 --- Log message: sext of compares. --- Diffs of the changes: (+14 -0) icmp.ll | 14 ++ 1 files changed, 14 insertions(+) Index: llvm/test/Transforms/InstCombine/icmp.ll diff -u

[llvm-commits] CVS: llvm/tools/llvm2cpp/CppWriter.cpp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/tools/llvm2cpp: CppWriter.cpp updated: 1.42 - 1.43 --- Log message: Add support for parameter attributes. --- Diffs of the changes: (+26 -1) CppWriter.cpp | 27 ++- 1 files changed, 26 insertions(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm/tools/llvm2cpp/CppWriter.cpp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/tools/llvm2cpp: CppWriter.cpp updated: 1.43 - 1.44 --- Log message: Fix some issues with param attrs. --- Diffs of the changes: (+4 -1) CppWriter.cpp |5 - 1 files changed, 4 insertions(+), 1 deletion(-) Index: llvm/tools/llvm2cpp/CppWriter.cpp diff -u

[llvm-commits] CVS: llvm/test/Feature/fold-fpcast.ll

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Feature: fold-fpcast.ll updated: 1.1 - 1.2 --- Log message: Fix to not give false positives. --- Diffs of the changes: (+2 -1) fold-fpcast.ll |3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) Index: llvm/test/Feature/fold-fpcast.ll diff -u

[llvm-commits] CVS: llvm/tools/llvm-upgrade/UpgradeParser.y

2007-04-11 Thread Reid Spencer
Changes in directory llvm/tools/llvm-upgrade: UpgradeParser.y updated: 1.80 - 1.81 --- Log message: Fix a crash-by-unknown-exception caused by attempting to use a null pointer as the key for a map insertion. --- Diffs of the changes: (+2 -1) UpgradeParser.y |3 ++- 1 files changed, 2

[llvm-commits] CVS: llvm/tools/llvm2cpp/CppWriter.cpp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/tools/llvm2cpp: CppWriter.cpp updated: 1.44 - 1.45 --- Log message: Fix several bugs relating to changes in the LLVM IR API or just outright typos in the output. This is sufficient to get most of the llvm2cpp tests working again. --- Diffs of the changes: (+27 -32)

[llvm-commits] CVS: llvm/tools/llvm2cpp/CppWriter.cpp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/tools/llvm2cpp: CppWriter.cpp updated: 1.45 - 1.46 --- Log message: Teach llvm2cpp about packed structure types. --- Diffs of the changes: (+2 -1) CppWriter.cpp |3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) Index: llvm/tools/llvm2cpp/CppWriter.cpp

[llvm-commits] CVS: llvm/test/Feature/packed_cmp.ll

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Feature: packed_cmp.ll updated: 1.3 - 1.4 --- Log message: Make sure this test uses llvm-upgrade. Don't allow false positives. --- Diffs of the changes: (+2 -1) packed_cmp.ll |3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) Index:

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

2007-04-11 Thread Reid Spencer
Changes in directory llvm/lib/Support: APInt.cpp updated: 1.75 - 1.76 --- Log message: Fix an approximate calculation in an assertion not to give false negatives. --- Diffs of the changes: (+1 -1) APInt.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm/tools/llvm2cpp/CppWriter.cpp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/tools/llvm2cpp: CppWriter.cpp updated: 1.46 - 1.47 --- Log message: Make the generated code for ConstantInt nicer. --- Diffs of the changes: (+2 -2) CppWriter.cpp |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index:

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

2007-04-11 Thread Reid Spencer
Changes in directory llvm/lib/VMCore: Instructions.cpp updated: 1.83 - 1.84 --- Log message: Fix a bug where ICmpInst objects instantiated directly with a name would not retain that name. Not noticed because AsmParser always sets name after construction. However, llvm2cpp noticed. --- Diffs

[llvm-commits] CVS: llvm/test/CodeGen/Generic/ispositive.ll

2007-04-11 Thread Chris Lattner
Changes in directory llvm/test/CodeGen/Generic: ispositive.ll updated: 1.1 - 1.2 --- Log message: change test name. --- Diffs of the changes: (+1 -1) ispositive.ll |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/test/CodeGen/Generic/ispositive.ll diff -u

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

2007-04-11 Thread Chris Lattner
On Apr 11, 2007, at 6:05 AM, Reid Spencer wrote: Instructions.cpp updated: 1.83 - 1.84 --- Log message: Fix a bug where ICmpInst objects instantiated directly with a name would not retain that name. Not noticed because AsmParser always sets name after construction. However, llvm2cpp

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

2007-04-11 Thread Chris Lattner
Changes in directory llvm/lib/Support: CommandLine.cpp updated: 1.85 - 1.86 --- Log message: Fix PR1318: http://llvm.org/PR1318 by reacting appropriately to a mutating option list. --- Diffs of the changes: (+14 -0) CommandLine.cpp | 14 ++ 1 files changed, 14

[llvm-commits] CVS: llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp

2007-04-11 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Scalar: ScalarReplAggregates.cpp updated: 1.83 - 1.84 --- Log message: Fix Transforms/ScalarRepl/union-pointer.ll --- Diffs of the changes: (+7 -6) ScalarReplAggregates.cpp | 13 +++-- 1 files changed, 7 insertions(+), 6 deletions(-)

[llvm-commits] CVS: llvm/test/Transforms/InstCombine/2006-12-08-Phi-ICmp-Op-Fold.ll

2007-04-11 Thread Chris Lattner
Changes in directory llvm/test/Transforms/InstCombine: 2006-12-08-Phi-ICmp-Op-Fold.ll updated: 1.2 - 1.3 --- Log message: adjust test --- Diffs of the changes: (+1 -1) 2006-12-08-Phi-ICmp-Op-Fold.ll |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm/test/CodeGen/X86/long-setcc.ll

2007-04-11 Thread Chris Lattner
Changes in directory llvm/test/CodeGen/X86: long-setcc.ll updated: 1.1 - 1.2 --- Log message: this got better --- Diffs of the changes: (+2 -1) long-setcc.ll |3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) Index: llvm/test/CodeGen/X86/long-setcc.ll diff -u

[llvm-commits] CVS: llvm/test/CodeGen/ARM/long-setcc.ll

2007-04-11 Thread Chris Lattner
Changes in directory llvm/test/CodeGen/ARM: long-setcc.ll updated: 1.2 - 1.3 --- Log message: this got better --- Diffs of the changes: (+2 -2) long-setcc.ll |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/test/CodeGen/ARM/long-setcc.ll diff -u

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

2007-04-11 Thread Chris Lattner
Changes in directory llvm/lib/Target/ARM: ARMISelLowering.cpp updated: 1.42 - 1.43 --- Log message: Fix incorrect fall-throughs in addr mode code. This fixes CodeGen/ARM/arm-negative-stride.ll --- Diffs of the changes: (+3 -3) ARMISelLowering.cpp |6 +++--- 1 files changed, 3

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

2007-04-11 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen/SelectionDAG: DAGCombiner.cpp updated: 1.289 - 1.290 --- Log message: fix an infinite loop compiling ldecod, notice by JeffC. --- Diffs of the changes: (+1 -1) DAGCombiner.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm-poolalloc/lib/PoolAllocate/AccessTrace.cpp Heuristic.cpp PointerCompress.cpp PoolAllocate.cpp PoolOptimize.cpp TransformFunctionBody.cpp

2007-04-11 Thread Andrew Lenharth
Changes in directory llvm-poolalloc/lib/PoolAllocate: AccessTrace.cpp updated: 1.9 - 1.10 Heuristic.cpp updated: 1.17 - 1.18 PointerCompress.cpp updated: 1.76 - 1.77 PoolAllocate.cpp updated: 1.133 - 1.134 PoolOptimize.cpp updated: 1.11 - 1.12 TransformFunctionBody.cpp updated: 1.61 - 1.62 ---

[llvm-commits] [125984] Cosmetic changes.

2007-04-11 Thread dpatel
Revision: 125984 Author: dpatel Date: 2007-04-11 10:29:14 -0700 (Wed, 11 Apr 2007) Log Message: --- Cosmetic changes. Rename fns/variales, add comment. Modified Paths: -- apple-local/branches/llvm/gcc/llvm-backend.cpp

[llvm-commits] CVS: llvm-poolalloc/include/dsa/DSGraph.h DataStructure.h

2007-04-11 Thread Andrew Lenharth
Changes in directory llvm-poolalloc/include/dsa: DSGraph.h updated: 1.113 - 1.114 DataStructure.h updated: 1.99 - 1.100 --- Log message: Minor refactoring, and cutting out stuff that should be (and is) in another branch --- Diffs of the changes: (+77 -184) DSGraph.h | 113

[llvm-commits] CVS: llvm-www/DevMtgMay2007.html

2007-04-11 Thread Reid Spencer
Changes in directory llvm-www: DevMtgMay2007.html updated: 1.54 - 1.55 --- Log message: Add Efrem Lipkin and Mike Mengler. --- Diffs of the changes: (+4 -2) DevMtgMay2007.html |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) Index: llvm-www/DevMtgMay2007.html diff -u

[llvm-commits] [125985] cosmetic.

2007-04-11 Thread dpatel
Revision: 125985 Author: dpatel Date: 2007-04-11 10:41:38 -0700 (Wed, 11 Apr 2007) Log Message: --- cosmetic. s/LLVMValuesNameTable/LLVMValuesTable/g Modified Paths: -- apple-local/branches/llvm/gcc/llvm-convert.cpp Modified:

[llvm-commits] CVS: llvm/test/Feature/packed_cmp.ll

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Feature: packed_cmp.ll updated: 1.4 - 1.5 --- Log message: Upgrade this file completely instead of downgrading it. Make sure that false positives aren't made. --- Diffs of the changes: (+30 -31) packed_cmp.ll | 61

[llvm-commits] CVS: llvm/test/lib/llvm2cpp.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/lib: llvm2cpp.exp updated: 1.6 - 1.7 --- Log message: Update the way llvm2cpp tests are done: 1. Make sure bytecode/assembly inputs are always redirected stdin so that the module name is stdin. This helps not get false negatives when the diff is done. 2.

[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/tls.c Makefile

2007-04-11 Thread Lauro Ramos Venancio
Changes in directory llvm-test/SingleSource/UnitTests: tls.c added (r1.1) Makefile updated: 1.14 - 1.15 --- Log message: Add a TLS test. --- Diffs of the changes: (+21 -0) Makefile |1 + tls.c| 20 2 files changed, 21 insertions(+) Index:

[llvm-commits] CVS: llvm/test/Feature/llvm2cpp.ll

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Feature: llvm2cpp.ll added (r1.1) --- Log message: Add a test case for testing basic IR features via llvm2cpp. This helps find bit rot in llvm2cpp and also tests the LLVM C++ IR in ways that llvm-as doesn't. --- Diffs of the changes: (+795 -0) llvm2cpp.ll |

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

2007-04-11 Thread Reid Spencer
On Wed, 2007-04-11 at 10:35 -0500, Chris Lattner wrote: Changes in directory llvm/lib/Support: CommandLine.cpp updated: 1.85 - 1.86 --- Log message: Fix PR1318: http://llvm.org/PR1318 by reacting appropriately to a mutating option list. Could you please create a regression test for

[llvm-commits] CVS: llvm/test/BugPoint/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/BugPoint: dg.exp updated: 1.4 - 1.5 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes (Makefile

[llvm-commits] CVS: llvm/test/Other/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Other: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes (Makefile and

[llvm-commits] CVS: llvm/test/Linker/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Linker: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes (Makefile and

[llvm-commits] CVS: llvm/test/Integer/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Integer: dg.exp updated: 1.1 - 1.2 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes (Makefile and

[llvm-commits] CVS: llvm/test/Feature/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Feature: dg.exp updated: 1.5 - 1.6 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes (Makefile and

[llvm-commits] CVS: llvm/test/TableGen/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/TableGen: dg.exp updated: 1.4 - 1.5 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes (Makefile

[llvm-commits] CVS: llvm/test/Archive/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Archive: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes (Makefile and

[llvm-commits] CVS: llvm/test/Transforms/Mem2Reg/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/Mem2Reg: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/ExecutionEngine/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/ExecutionEngine: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/DebugInfo/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/DebugInfo: dg.exp updated: 1.1 - 1.2 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes (Makefile

[llvm-commits] CVS: llvm/test/Bytecode/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Bytecode: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes (Makefile

[llvm-commits] CVS: llvm/test/CodeGen/SPARC/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/CodeGen/SPARC: dg.exp updated: 1.2 - 1.3 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/CodeGen/X86/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/CodeGen/X86: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes (Makefile

[llvm-commits] CVS: llvm/test/CFrontend/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/CFrontend: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes (Makefile

[llvm-commits] CVS: llvm/test/Assembler/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Assembler: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes (Makefile

[llvm-commits] CVS: llvm/test/Transforms/LICM/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/LICM: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/CodeGen/Alpha/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/CodeGen/Alpha: dg.exp updated: 1.2 - 1.3 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/Transforms/GCSE/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/GCSE: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/CodeGen/ARM/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/CodeGen/ARM: dg.exp updated: 1.1 - 1.2 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes (Makefile

[llvm-commits] CVS: llvm/test/Verifier/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Verifier: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes (Makefile

[llvm-commits] CVS: llvm/test/Analysis/BasicAA/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Analysis/BasicAA: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/CodeGen/Generic/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/CodeGen/Generic: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/Transforms/TailDup/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/TailDup: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/CodeGen/PowerPC/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/CodeGen/PowerPC: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/CodeGen/IA64/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/CodeGen/IA64: dg.exp updated: 1.2 - 1.3 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/CodeGen/CBackend/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/CodeGen/CBackend: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/Transforms/BlockPlacement/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/BlockPlacement: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/PruneEH/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/PruneEH: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/Transforms/SCCP/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/SCCP: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/Analysis/LoopInfo/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Analysis/LoopInfo: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/Transforms/GlobalOpt/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/GlobalOpt: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/Transforms/ConstProp/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/ConstProp: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/Transforms/TailCallElim/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/TailCallElim: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/InstCombine/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/InstCombine: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/CondProp/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/CondProp: dg.exp updated: 1.2 - 1.3 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/Transforms/RaiseAllocations/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/RaiseAllocations: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/SimplifyCFG/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/SimplifyCFG: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/LowerSwitch/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/LowerSwitch: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Analysis/ScalarEvolution/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Analysis/ScalarEvolution: dg.exp updated: 1.1 - 1.2 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/PredicateSimplifier/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/PredicateSimplifier: dg.exp updated: 1.1 - 1.2 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a

[llvm-commits] CVS: llvm/test/Transforms/LowerSetJmp/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/LowerSetJmp: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/LoopRotate/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/LoopRotate: dg.exp updated: 1.1 - 1.2 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/Transforms/GlobalDCE/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/GlobalDCE: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/Analysis/GlobalsModRef/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Analysis/GlobalsModRef: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/LoopUnroll/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/LoopUnroll: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/Transforms/DeadArgElim/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/DeadArgElim: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/LowerInvoke/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/LowerInvoke: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/LoopSimplify/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/LoopSimplify: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/ConstantMerge/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/ConstantMerge: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/CodeExtractor/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/CodeExtractor: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/Reassociate/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/Reassociate: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/CorrelatedExprs/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/CorrelatedExprs: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/IndVarsSimplify/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/IndVarsSimplify: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/LoopStrengthReduce/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/LoopStrengthReduce: dg.exp updated: 1.2 - 1.3 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/LCSSA/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/LCSSA: dg.exp updated: 1.1 - 1.2 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes

[llvm-commits] CVS: llvm/test/Transforms/DeadStoreElimination/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/DeadStoreElimination: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a

[llvm-commits] CVS: llvm/test/Transforms/IPConstantProp/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/IPConstantProp: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple

[llvm-commits] CVS: llvm/test/Transforms/DecomposeMultiDimRefs/dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/Transforms/DecomposeMultiDimRefs: dg.exp updated: 1.3 - 1.4 --- Log message: Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a

Re: [llvm-commits] CVS: llvm/test/TableGen/dg.exp

2007-04-11 Thread Chris Lattner
Make the llvm-runtest function much more amenable by eliminating all the global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes (Makefile and llvm-dg.exp) instead of touching every single dg.exp file. yay! :)

Re: [llvm-commits] CVS: llvm/test/Feature/llvm2cpp.ll

2007-04-11 Thread Chris Lattner
On Apr 11, 2007, at 12:54 PM, Reid Spencer wrote: + ; RUN: llvm-as %s | llvm-dis %t1.ll + ; RUN: llvm-as %s | llvm2cpp -gen-program -o %t2.cpp - + ; RUN: gcc -g -D__STDC_LIMIT_MACROS -o %t2.exe %t2.cpp -I%I -L%L - lLLVMCore -lLLVMSupport -lLLVMbzip2 -lLLVMSystem -lstdc++ + ; RUN:

Re: [llvm-commits] CVS: llvm/test/Feature/llvm2cpp.ll

2007-04-11 Thread Jeff Cohen
Chris Lattner wrote: On Apr 11, 2007, at 12:54 PM, Reid Spencer wrote: + ; RUN: llvm-as %s | llvm-dis %t1.ll + ; RUN: llvm-as %s | llvm2cpp -gen-program -o %t2.cpp - + ; RUN: gcc -g -D__STDC_LIMIT_MACROS -o %t2.exe %t2.cpp -I%I -L%L - lLLVMCore -lLLVMSupport -lLLVMbzip2 -lLLVMSystem

Re: [llvm-commits] CVS: llvm/test/Feature/llvm2cpp.ll

2007-04-11 Thread Reid Spencer
On Wed, 2007-04-11 at 13:43 -0700, Jeff Cohen wrote: Chris Lattner wrote: On Apr 11, 2007, at 12:54 PM, Reid Spencer wrote: + ; RUN: llvm-as %s | llvm-dis %t1.ll + ; RUN: llvm-as %s | llvm2cpp -gen-program -o %t2.cpp - + ; RUN: gcc -g -D__STDC_LIMIT_MACROS -o %t2.exe

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

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test: Makefile updated: 1.94 - 1.95 --- Log message: Make new variables available: compile_c, compile_cxx, link to handle tests that want to use LLVM's notion of compiling and linking programs. This includes all the -I -L and optimization switches that LLVM would

[llvm-commits] CVS: llvm/test/lib/llvm-dg.exp

2007-04-11 Thread Reid Spencer
Changes in directory llvm/test/lib: llvm-dg.exp updated: 1.15 - 1.16 --- Log message: Make new variables available: compile_c, compile_cxx, link to handle tests that want to use LLVM's notion of compiling and linking programs. This includes all the -I -L and optimization switches that LLVM

  1   2   >