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

2006-12-01 Thread Evan Cheng
Changes in directory llvm/lib/Target/PowerPC: PPCAsmPrinter.cpp updated: 1.212 -> 1.213 --- Log message: A initialized global variable cannot be extern weak. However, if a global value's initializer is itself a external weak symbol, emit the weak reference. --- Diffs of the changes: (+10 -0)

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

2006-12-01 Thread Evan Cheng
Changes in directory llvm/lib/Target/X86: X86AsmPrinter.cpp updated: 1.217 -> 1.218 --- Log message: A initialized global variable cannot be extern weak. However, if a global value's initializer is itself a external weak symbol, emit the weak reference. --- Diffs of the changes: (+6 -11) X

[llvm-commits] CVS: llvm/test/Regression/CodeGen/X86/extern_weak.ll

2006-12-01 Thread Evan Cheng
Changes in directory llvm/test/Regression/CodeGen/X86: extern_weak.ll added (r1.1) --- Log message: Add a extern weak test case. --- Diffs of the changes: (+11 -0) extern_weak.ll | 11 +++ 1 files changed, 11 insertions(+) Index: llvm/test/Regression/CodeGen/X86/extern_weak.ll d

[llvm-commits] CVS: llvm/test/Regression/CodeGen/X86/2005-05-08-FPStackifierPHI.ll

2006-12-01 Thread Evan Cheng
Changes in directory llvm/test/Regression/CodeGen/X86: 2005-05-08-FPStackifierPHI.ll updated: 1.1 -> 1.2 --- Log message: This test is meant for X86 CPU which does not support SSE2. --- Diffs of the changes: (+1 -1) 2005-05-08-FPStackifierPHI.ll |2 +- 1 files changed, 1 insertion(+), 1

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

2006-12-01 Thread Evan Cheng
Changes in directory llvm/lib/Target/X86: X86FloatingPoint.cpp updated: 1.62 -> 1.63 --- Log message: Fix 2005-05-08-FPStackifierPHI.ll failure. --- Diffs of the changes: (+7 -26) X86FloatingPoint.cpp | 33 +++-- 1 files changed, 7 insertions(+), 26 deletions(-

Re: [llvm-commits] [llvm-gcc4] gcc/llvm-debug.cpp

2006-12-01 Thread Rafael EspĂ­ndola
Could you please send this patch as an attachment? Sending it inline broke something... Thanks, Rafael ___ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

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

2006-12-01 Thread Jim Laskey
Changes in directory llvm/lib/Target/PowerPC: PPCAsmPrinter.cpp updated: 1.213 -> 1.214 --- Log message: ExternalWeak case in wrong location. --- Diffs of the changes: (+1 -1) PPCAsmPrinter.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Target/PowerPC/PPCAsm

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

2006-12-01 Thread Jim Laskey
Changes in directory llvm/lib/Target/PowerPC: PPCISelLowering.cpp updated: 1.238 -> 1.239 --- Log message: 1. In ppc64 mode we need only use one GPR. 2. Float values need to be promoted to double when they are vararg. --- Diffs of the changes: (+7 -1) PPCISelLowering.cpp |8 +++-

[llvm-commits] CVS: llvm/test/Regression/CFrontend/extern-weak.c

2006-12-01 Thread Chris Lattner
Changes in directory llvm/test/Regression/CFrontend: extern-weak.c updated: 1.1 -> 1.2 --- Log message: enable this now that codegen support is in place --- Diffs of the changes: (+2 -4) extern-weak.c |6 ++ 1 files changed, 2 insertions(+), 4 deletions(-) Index: llvm/test/Regres

[llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/Prolangs-C/fixoutput/fixoutput.c

2006-12-01 Thread Chris Lattner
Changes in directory llvm-test/MultiSource/Benchmarks/Prolangs-C/fixoutput: fixoutput.c updated: 1.2 -> 1.3 --- Log message: let this pass on ppc --- Diffs of the changes: (+1 -0) fixoutput.c |1 + 1 files changed, 1 insertion(+) Index: llvm-test/MultiSource/Benchmarks/Prolangs-C/fix

[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/Vector/build.c divides.c multiplies.c

2006-12-01 Thread Chris Lattner
Changes in directory llvm-test/SingleSource/UnitTests/Vector: build.c updated: 1.1 -> 1.2 divides.c updated: 1.1 -> 1.2 multiplies.c updated: 1.1 -> 1.2 --- Log message: Allow these to pass on ppc --- Diffs of the changes: (+5 -5) build.c |8 +++- divides.c|1 + multip

[llvm-commits] CVS: llvm/test/Regression/Transforms/ConstProp/2006-12-01-TruncBoolBug.ll

2006-12-01 Thread Chris Lattner
Changes in directory llvm/test/Regression/Transforms/ConstProp: 2006-12-01-TruncBoolBug.ll added (r1.1) --- Log message: new 'cast' miscompilation, reduced from perlbmk by Evan --- Diffs of the changes: (+5 -0) 2006-12-01-TruncBoolBug.ll |5 + 1 files changed, 5 insertions(+) In

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

2006-12-01 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: Constants.cpp updated: 1.172 -> 1.173 --- Log message: add a new ConstantIntegral::get method. Simplify the implementation of ConstantInt::get --- Diffs of the changes: (+6 -3) Constants.cpp |9 ++--- 1 files changed, 6 insertions(+), 3 deleti

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

2006-12-01 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: ConstantFolding.cpp updated: 1.103 -> 1.104 --- Log message: this logic is broken for trunc to bool, replace the folding logic for trunc completely, as it is trivial. We should probably do this for the rest of the cast operations. This fixes ConstProp/200

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

2006-12-01 Thread Evan Cheng
Changes in directory llvm/lib/Target/PowerPC: PPCAsmPrinter.cpp updated: 1.214 -> 1.215 --- Log message: Copy and paste error. An initialized global cannot be a weak reference. --- Diffs of the changes: (+0 -3) PPCAsmPrinter.cpp |3 --- 1 files changed, 3 deletions(-) Index: llvm/lib/

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

2006-12-01 Thread Chris Lattner
Changes in directory llvm/include/llvm: Constants.h updated: 1.95 -> 1.96 --- Log message: add a new ConstantIntegral::get method. Simplify the implementation of ConstantInt::get --- Diffs of the changes: (+4 -0) Constants.h |4 1 files changed, 4 insertions(+) Index: llvm/incl

[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/Vector/build.c

2006-12-01 Thread Chris Lattner
Changes in directory llvm-test/SingleSource/UnitTests/Vector: build.c updated: 1.2 -> 1.3 --- Log message: correct this test --- Diffs of the changes: (+5 -2) build.c |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-) Index: llvm-test/SingleSource/UnitTests/Vector/build.c d

[llvm-commits] CVS: llvm/test/Regression/CodeGen/PowerPC/2006-12-01-float_varg.ll

2006-12-01 Thread Jim Laskey
Changes in directory llvm/test/Regression/CodeGen/PowerPC: 2006-12-01-float_varg.ll added (r1.1) --- Log message: Test for float varargs. --- Diffs of the changes: (+16 -0) 2006-12-01-float_varg.ll | 16 1 files changed, 16 insertions(+) Index: llvm/test/Regression/Code

[llvm-commits] CVS: llvm/test/Regression/CodeGen/PowerPC/2006-12-01-float_varg.ll

2006-12-01 Thread LLVM
Changes in directory llvm/test/Regression/CodeGen/PowerPC: 2006-12-01-float_varg.ll (r1.1) removed --- Log message: wrong spot --- Diffs of the changes: (+0 -0) 0 files changed ___ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists

[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/2006-12-01-float_varg.c

2006-12-01 Thread Jim Laskey
Changes in directory llvm-test/SingleSource/UnitTests: 2006-12-01-float_varg.c added (r1.1) --- Log message: Add float vararg test. --- Diffs of the changes: (+6 -0) 2006-12-01-float_varg.c |6 ++ 1 files changed, 6 insertions(+) Index: llvm-test/SingleSource/UnitTests/2006-12-01-

[llvm-commits] CVS: llvm/test/Regression/Transforms/ConstProp/2006-12-01-bool-casts.ll

2006-12-01 Thread Chris Lattner
Changes in directory llvm/test/Regression/Transforms/ConstProp: 2006-12-01-bool-casts.ll added (r1.1) --- Log message: test1 is miscompiled --- Diffs of the changes: (+13 -0) 2006-12-01-bool-casts.ll | 13 + 1 files changed, 13 insertions(+) Index: llvm/test/Regression/Tran

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

2006-12-01 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: ConstantFolding.cpp updated: 1.104 -> 1.105 --- Log message: These should be rewritten to fold without using the 'Rules' mechanism, but until this happens at least make sext from bool and sitofp from bool do the right thing. --- Diffs of the changes: (+3

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

2006-12-01 Thread Chris Lattner
Changes in directory llvm/include/llvm: PassSupport.h updated: 1.30 -> 1.31 --- Log message: Remove dead methods --- Diffs of the changes: (+0 -22) PassSupport.h | 22 -- 1 files changed, 22 deletions(-) Index: llvm/include/llvm/PassSupport.h diff -u llvm/include/ll

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

2006-12-01 Thread Evan Cheng
Changes in directory llvm/lib/Target/PowerPC: PPCAsmPrinter.cpp updated: 1.215 -> 1.216 PPCTargetAsmInfo.cpp updated: 1.8 -> 1.9 --- Log message: Add weak reference directive. --- Diffs of the changes: (+8 -5) PPCAsmPrinter.cpp| 12 +++- PPCTargetAsmInfo.cpp |1 + 2 files

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

2006-12-01 Thread Evan Cheng
Changes in directory llvm/lib/Target: TargetAsmInfo.cpp updated: 1.10 -> 1.11 --- Log message: Add weak reference directive. --- Diffs of the changes: (+1 -0) TargetAsmInfo.cpp |1 + 1 files changed, 1 insertion(+) Index: llvm/lib/Target/TargetAsmInfo.cpp diff -u llvm/lib/Target/Targe

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

2006-12-01 Thread Evan Cheng
Changes in directory llvm/lib/Target/X86: X86AsmPrinter.cpp updated: 1.218 -> 1.219 X86TargetAsmInfo.cpp updated: 1.11 -> 1.12 --- Log message: Add weak reference directive. --- Diffs of the changes: (+4 -6) X86AsmPrinter.cpp|8 ++-- X86TargetAsmInfo.cpp |2 ++ 2 files chang

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

2006-12-01 Thread Evan Cheng
Changes in directory llvm/include/llvm/Target: TargetAsmInfo.h updated: 1.14 -> 1.15 --- Log message: Add weak reference directive. --- Diffs of the changes: (+7 -0) TargetAsmInfo.h |7 +++ 1 files changed, 7 insertions(+) Index: llvm/include/llvm/Target/TargetAsmInfo.h diff -u ll

[llvm-commits] CVS: llvm/test/Regression/Transforms/IPConstantProp/return-constant.ll

2006-12-01 Thread Chris Lattner
Changes in directory llvm/test/Regression/Transforms/IPConstantProp: return-constant.ll updated: 1.3 -> 1.4 --- Log message: fix incorrectly translated testcase --- Diffs of the changes: (+1 -1) return-constant.ll |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/test

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

2006-12-01 Thread Evan Cheng
Changes in directory llvm/lib/CodeGen/SelectionDAG: ScheduleDAG.cpp updated: 1.110 -> 1.111 ScheduleDAGRRList.cpp updated: 1.21 -> 1.22 --- Log message: Match TargetInstrInfo changes. --- Diffs of the changes: (+5 -10) ScheduleDAG.cpp |3 +-- ScheduleDAGRRList.cpp | 12 -

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

2006-12-01 Thread Evan Cheng
Changes in directory llvm/lib/CodeGen: LiveIntervalAnalysis.cpp updated: 1.198 -> 1.199 TwoAddressInstructionPass.cpp updated: 1.41 -> 1.42 VirtRegMap.cpp updated: 1.80 -> 1.81 --- Log message: Match TargetInstrInfo changes. --- Diffs of the changes: (+12 -20) LiveIntervalAnalysis.cpp

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

2006-12-01 Thread Evan Cheng
Changes in directory llvm/lib/Target/X86: X86InstrInfo.cpp updated: 1.75 -> 1.76 --- Log message: convertToThreeAddress() is now responsible for updating live info as well as inserting the new MI's. --- Diffs of the changes: (+16 -8) X86InstrInfo.cpp | 24 1 file

[llvm-commits] CVS: llvm/lib/Target/X86/X86CodeEmitter.cpp X86InstrInfo.h X86RegisterInfo.cpp

2006-12-01 Thread Evan Cheng
Changes in directory llvm/lib/Target/X86: X86CodeEmitter.cpp updated: 1.123 -> 1.124 X86InstrInfo.h updated: 1.59 -> 1.60 X86RegisterInfo.cpp updated: 1.181 -> 1.182 --- Log message: Match TargetInstrInfo changes. --- Diffs of the changes: (+6 -4) X86CodeEmitter.cpp |4 ++-- X86InstrIn

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

2006-12-01 Thread Evan Cheng
Changes in directory llvm/include/llvm/Target: TargetInstrInfo.h updated: 1.106 -> 1.107 --- Log message: - Add getOperandConstraint() to TargetInstrDescriptor. - convertToThreeAddress() change to allow single two-address MI to be converted into one or more 3-address MIs. --- Diffs of the ch

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

2006-12-01 Thread Evan Cheng
Changes in directory llvm/lib/Target: TargetInstrInfo.cpp updated: 1.23 -> 1.24 --- Log message: Match TargetInstrInfo changes. --- Diffs of the changes: (+1 -1) TargetInstrInfo.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Target/TargetInstrInfo.cpp diff -

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

2006-12-01 Thread Chris Lattner
Changes in directory llvm/include/llvm: PassSupport.h updated: 1.31 -> 1.32 --- Log message: remove 'target constructor' support. --- Diffs of the changes: (+5 -15) PassSupport.h | 20 +--- 1 files changed, 5 insertions(+), 15 deletions(-) Index: llvm/include/llvm/PassS

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

2006-12-01 Thread Chris Lattner
Changes in directory llvm/include/llvm/Support: PassNameParser.h updated: 1.13 -> 1.14 --- Log message: remove 'target constructor' support. --- Diffs of the changes: (+1 -2) PassNameParser.h |3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) Index: llvm/include/llvm/Support/Pas

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

2006-12-01 Thread Evan Cheng
Changes in directory llvm/include/llvm/Target: TargetAsmInfo.h updated: 1.15 -> 1.16 --- Log message: Typo --- Diffs of the changes: (+1 -1) TargetAsmInfo.h |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/include/llvm/Target/TargetAsmInfo.h diff -u llvm/include/llvm/

[llvm-commits] CVS: llvm/tools/llvm-ld/Optimize.cpp

2006-12-01 Thread Chris Lattner
Changes in directory llvm/tools/llvm-ld: Optimize.cpp updated: 1.14 -> 1.15 --- Log message: target constructors are never used --- Diffs of the changes: (+1 -4) Optimize.cpp |5 + 1 files changed, 1 insertion(+), 4 deletions(-) Index: llvm/tools/llvm-ld/Optimize.cpp diff -u llvm

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

2006-12-01 Thread Chris Lattner
Changes in directory llvm/tools/opt: opt.cpp updated: 1.122 -> 1.123 --- Log message: target constructors are never used --- Diffs of the changes: (+1 -4) opt.cpp |5 + 1 files changed, 1 insertion(+), 4 deletions(-) Index: llvm/tools/opt/opt.cpp diff -u llvm/tools/opt/opt.cpp:1.

[llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/mediabench/g721/g721encode/encode.c

2006-12-01 Thread Jim Laskey
Changes in directory llvm-test/MultiSource/Benchmarks/mediabench/g721/g721encode: encode.c updated: 1.1 -> 1.2 --- Log message: Test failing because of missing return statement. --- Diffs of the changes: (+1 -0) encode.c |1 + 1 files changed, 1 insertion(+) Index: llvm-test/MultiSou

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

2006-12-01 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: Pass.cpp updated: 1.72 -> 1.73 --- Log message: move 'cfgonly' pass tracking into PassInfo, instead of handling it with yet-another global data structure. --- Diffs of the changes: (+26 -37) Pass.cpp | 63 ++---

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

2006-12-01 Thread Chris Lattner
Changes in directory llvm/include/llvm: PassSupport.h updated: 1.33 -> 1.34 --- Log message: pass cfgonly up the ctor instead of calling an explicit method. --- Diffs of the changes: (+6 -22) PassSupport.h | 28 ++-- 1 files changed, 6 insertions(+), 22 deletions(

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

2006-12-01 Thread Reid Spencer
Changes in directory llvm/tools/llvm-upgrade: UpgradeParser.cpp updated: 1.8 -> 1.9 UpgradeParser.cpp.cvs updated: 1.8 -> 1.9 UpgradeParser.y updated: 1.8 -> 1.9 UpgradeParser.y.cvs updated: 1.8 -> 1.9 --- Log message: Don't convert {} into []! --- Diffs of the changes: (+8 -8) UpgradePars

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

2006-12-01 Thread Evan Cheng
Changes in directory llvm/utils/TableGen: CodeGenTarget.cpp updated: 1.79 -> 1.80 --- Log message: Match TargetInstrInfo changes. --- Diffs of the changes: (+2 -3) CodeGenTarget.cpp |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) Index: llvm/utils/TableGen/CodeGenTarget.cpp

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

2006-12-01 Thread Chris Lattner
Changes in directory llvm/include/llvm: PassSupport.h updated: 1.32 -> 1.33 --- Log message: move 'cfgonly' pass tracking into PassInfo, instead of handling it with yet-another global data structure. --- Diffs of the changes: (+11 -3) PassSupport.h | 14 +++--- 1 files changed, 1

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

2006-12-01 Thread Chris Lattner
Changes in directory llvm/include/llvm: PassSupport.h updated: 1.34 -> 1.35 --- Log message: Start moving pass registration over to using the ManagedStatic mechanism. This fixes issues where passes get unregistered before llvm_shutdown is called, and is generally cleaner and simpler. Analysis

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

2006-12-01 Thread Chris Lattner
Changes in directory llvm/include/llvm/Support: PassNameParser.h updated: 1.14 -> 1.15 --- Log message: Start moving pass registration over to using the ManagedStatic mechanism. This fixes issues where passes get unregistered before llvm_shutdown is called, and is generally cleaner and simpler

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

2006-12-01 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: Pass.cpp updated: 1.73 -> 1.74 --- Log message: Start moving pass registration over to using the ManagedStatic mechanism. This fixes issues where passes get unregistered before llvm_shutdown is called, and is generally cleaner and simpler. Analysis groups

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

2006-12-01 Thread Chris Lattner
Changes in directory llvm/include/llvm: PassSupport.h updated: 1.35 -> 1.36 --- Log message: Switch analysis groups to be unregistered when llvm_shutdown is called. --- Diffs of the changes: (+0 -2) PassSupport.h |2 -- 1 files changed, 2 deletions(-) Index: llvm/include/llvm/PassSu

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

2006-12-01 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: Pass.cpp updated: 1.74 -> 1.75 --- Log message: Switch analysis groups to be unregistered when llvm_shutdown is called. --- Diffs of the changes: (+36 -55) Pass.cpp | 91 --- 1 files change

[llvm-commits] CVS: llvm/test/Regression/Transforms/InstCombine/2006-12-01-BadFPVectorXform.ll

2006-12-01 Thread Chris Lattner
Changes in directory llvm/test/Regression/Transforms/InstCombine: 2006-12-01-BadFPVectorXform.ll added (r1.1) --- Log message: new testcase --- Diffs of the changes: (+9 -0) 2006-12-01-BadFPVectorXform.ll |9 + 1 files changed, 9 insertions(+) Index: llvm/test/Regression/Tra

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

2006-12-01 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Scalar: InstructionCombining.cpp updated: 1.556 -> 1.557 --- Log message: disable transformations that are invalid for fp vectors. This fixes Transforms/InstCombine/2006-12-01-BadFPVectorXform.ll --- Diffs of the changes: (+4 -4) InstructionCombi

[llvm-commits] CVS: llvm/win32/Support/Support.vcproj

2006-12-01 Thread Jeff Cohen
Changes in directory llvm/win32/Support: Support.vcproj updated: 1.16 -> 1.17 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+6 -0) Support.vcproj |6 ++ 1 files changed, 6 insertions(+) Index: llvm/win32/Support/Support.vcproj diff -u llvm/win32/Support/Support.v

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

2006-12-01 Thread Jeff Cohen
Changes in directory llvm/lib/CodeGen: LiveIntervalAnalysis.cpp updated: 1.199 -> 1.200 RegAllocLinearScan.cpp updated: 1.132 -> 1.133 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+2 -0) LiveIntervalAnalysis.cpp |1 + RegAllocLinearScan.cpp |1 + 2 files changed

[llvm-commits] CVS: llvm/win32/VMCore/VMCore.vcproj

2006-12-01 Thread Jeff Cohen
Changes in directory llvm/win32/VMCore: VMCore.vcproj updated: 1.22 -> 1.23 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+3 -0) VMCore.vcproj |3 +++ 1 files changed, 3 insertions(+) Index: llvm/win32/VMCore/VMCore.vcproj diff -u llvm/win32/VMCore/VMCore.vcproj:1.22

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

2006-12-01 Thread Jeff Cohen
Changes in directory llvm/lib/Analysis: ConstantFolding.cpp updated: 1.6 -> 1.7 ScalarEvolution.cpp updated: 1.60 -> 1.61 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+2 -0) ConstantFolding.cpp |1 + ScalarEvolution.cpp |1 + 2 files changed, 2 insertions(+) Ind

[llvm-commits] CVS: llvm/win32/Analysis/Analysis.vcproj

2006-12-01 Thread Jeff Cohen
Changes in directory llvm/win32/Analysis: Analysis.vcproj updated: 1.20 -> 1.21 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+3 -0) Analysis.vcproj |3 +++ 1 files changed, 3 insertions(+) Index: llvm/win32/Analysis/Analysis.vcproj diff -u llvm/win32/Analysis/Analys

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

2006-12-01 Thread Jeff Cohen
Changes in directory llvm/lib/Transforms/Scalar: PredicateSimplifier.cpp updated: 1.34 -> 1.35 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+7 -7) PredicateSimplifier.cpp | 14 +++--- 1 files changed, 7 insertions(+), 7 deletions(-) Index: llvm/lib/Transforms/

[llvm-commits] CVS: llvm/lib/ExecutionEngine/Interpreter/Execution.cpp ExternalFunctions.cpp

2006-12-01 Thread Jeff Cohen
Changes in directory llvm/lib/ExecutionEngine/Interpreter: Execution.cpp updated: 1.149 -> 1.150 ExternalFunctions.cpp updated: 1.90 -> 1.91 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+2 -0) Execution.cpp |1 + ExternalFunctions.cpp |1 + 2 files changed

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

2006-12-01 Thread Jeff Cohen
Changes in directory llvm/lib/VMCore: Instructions.cpp updated: 1.48 -> 1.49 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+1 -1) Instructions.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/VMCore/Instructions.cpp diff -u llvm/lib/VMCore/In

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

2006-12-01 Thread Jeff Cohen
Changes in directory llvm/lib/CodeGen/SelectionDAG: SelectionDAG.cpp updated: 1.374 -> 1.375 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+1 -0) SelectionDAG.cpp |1 + 1 files changed, 1 insertion(+) Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp diff -u llvm

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

2006-12-01 Thread Reid Spencer
Changes in directory llvm/tools: Makefile updated: 1.59 -> 1.60 --- Log message: Build llvm-update now. --- Diffs of the changes: (+1 -1) Makefile |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/tools/Makefile diff -u llvm/tools/Makefile:1.59 llvm/tools/Makefile:1.6

[llvm-commits] CVS: llvm/test/Regression/Transforms/InstCombine/2006-12-01-BadFPVectorXform.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/InstCombine: 2006-12-01-BadFPVectorXform.ll updated: 1.1 -> 1.2 --- Log message: Update this test to use llvm-update. --- Diffs of the changes: (+2 -2) 2006-12-01-BadFPVectorXform.ll |4 ++-- 1 files changed, 2 insertions(+), 2 delet

[llvm-commits] CVS: llvm/test/Regression/Transforms/IPConstantProp/deadarg.ll recursion.ll return-constant.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/IPConstantProp: deadarg.ll updated: 1.1 -> 1.2 recursion.ll updated: 1.1 -> 1.2 return-constant.ll updated: 1.4 -> 1.5 --- Log message: Use the llvm-upgrade program to upgrade llvm assembly. --- Diffs of the changes: (+3 -3) deadarg.ll

[llvm-commits] CVS: llvm/test/Regression/Transforms/RaiseAllocations/2004-11-08-FreeUseCrash.ll FreeCastConstantExpr.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/RaiseAllocations: 2004-11-08-FreeUseCrash.ll updated: 1.1 -> 1.2 FreeCastConstantExpr.ll updated: 1.1 -> 1.2 --- Log message: Use the llvm-upgrade program to upgrade llvm assembly. --- Diffs of the changes: (+2 -2) 2004-11-08-FreeUseCras

[llvm-commits] CVS: llvm/test/Regression/CodeGen/IA64/2005-08-22-LegalizerCrash.ll 2005-10-29-shladd.ll ret-0.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/CodeGen/IA64: 2005-08-22-LegalizerCrash.ll updated: 1.1 -> 1.2 2005-10-29-shladd.ll updated: 1.1 -> 1.2 ret-0.ll updated: 1.1 -> 1.2 --- Log message: Use the llvm-upgrade program to upgrade llvm assembly. --- Diffs of the changes: (+3 -3) 2005-08-2

[llvm-commits] CVS: llvm/test/Regression/Transforms/LoopUnroll/2004-05-13-DontUnrollTooMuch.ll 2005-03-06-BadLoopInfoUpdate.ll 2006-08-24-MultiBlockLoop.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/LoopUnroll: 2004-05-13-DontUnrollTooMuch.ll updated: 1.1 -> 1.2 2005-03-06-BadLoopInfoUpdate.ll updated: 1.1 -> 1.2 2006-08-24-MultiBlockLoop.ll updated: 1.1 -> 1.2 --- Log message: Use the llvm-upgrade program to upgrade llvm assembly. ---

[llvm-commits] CVS: llvm/test/Regression/ExecutionEngine/2003-05-06-LivenessClobber.llx 2003-05-07-ArgumentTest.llx 2005-12-02-TailCallBug.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/ExecutionEngine: 2003-05-06-LivenessClobber.llx updated: 1.4 -> 1.5 2003-05-07-ArgumentTest.llx updated: 1.3 -> 1.4 2005-12-02-TailCallBug.ll updated: 1.4 -> 1.5 --- Log message: Use the llvm-upgrade program to upgrade llvm assembly. --- Diffs of the

[llvm-commits] CVS: llvm/test/Regression/Transforms/ConstantMerge/2002-09-23-CPR-Update.ll 2003-10-28-MergeExternalConstants.ll 2006-03-07-DontMergeDiffSections.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/ConstantMerge: 2002-09-23-CPR-Update.ll updated: 1.3 -> 1.4 2003-10-28-MergeExternalConstants.ll updated: 1.3 -> 1.4 2006-03-07-DontMergeDiffSections.ll updated: 1.1 -> 1.2 --- Log message: Use the llvm-upgrade program to upgrade llvm assembl

[llvm-commits] CVS: llvm/test/Regression/Transforms/LowerSetJmp/2003-11-05-DominanceProperties.ll 2005-05-05-OldUses.ll simpletest.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/LowerSetJmp: 2003-11-05-DominanceProperties.ll updated: 1.2 -> 1.3 2005-05-05-OldUses.ll updated: 1.1 -> 1.2 simpletest.ll updated: 1.3 -> 1.4 --- Log message: Use the llvm-upgrade program to upgrade llvm assembly. --- Diffs of the changes:

[llvm-commits] CVS: llvm/test/Regression/Transforms/LoopUnswitch/2006-02-14-LoopSimplifyCrash.ll 2006-02-22-UnswitchCrash.ll 2006-06-13-SingleEntryPHI.ll 2006-06-27-DeadSwitchCase.ll basictest.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/LoopUnswitch: 2006-02-14-LoopSimplifyCrash.ll updated: 1.1 -> 1.2 2006-02-22-UnswitchCrash.ll updated: 1.1 -> 1.2 2006-06-13-SingleEntryPHI.ll updated: 1.1 -> 1.2 2006-06-27-DeadSwitchCase.ll updated: 1.1 -> 1.2 basictest.ll updated: 1.1 -> 1.

[llvm-commits] CVS: llvm/test/Regression/Analysis/LoopInfo/2003-05-15-NestingProblem.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Analysis/LoopInfo: 2003-05-15-NestingProblem.ll updated: 1.4 -> 1.5 --- Log message: Use the llvm-upgrade program to upgrade llvm assembly. --- Diffs of the changes: (+1 -1) 2003-05-15-NestingProblem.ll |2 +- 1 files changed, 1 insertion(+), 1

[llvm-commits] CVS: llvm/test/Regression/CodeGen/Generic/GC/alloc_loop.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/CodeGen/Generic/GC: alloc_loop.ll updated: 1.4 -> 1.5 --- Log message: Use the llvm-upgrade program to upgrade llvm assembly. --- Diffs of the changes: (+1 -1) alloc_loop.ll |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/te

[llvm-commits] CVS: llvm/test/Regression/Analysis/Dominators/2003-05-12-UnreachableCode.ll 2006-09-26-PostDominanceFrontier.ll 2006-10-02-BreakCritEdges.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Analysis/Dominators: 2003-05-12-UnreachableCode.ll updated: 1.3 -> 1.4 2006-09-26-PostDominanceFrontier.ll updated: 1.1 -> 1.2 2006-10-02-BreakCritEdges.ll updated: 1.1 -> 1.2 --- Log message: Use the llvm-upgrade program to upgrade llvm assembly. ---

[llvm-commits] CVS: llvm/test/Regression/CodeGen/SPARC/2006-01-22-BitConvertLegalize.ll basictest.ll ctpop.ll xnor.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/CodeGen/SPARC: 2006-01-22-BitConvertLegalize.ll updated: 1.1 -> 1.2 basictest.ll updated: 1.1 -> 1.2 ctpop.ll updated: 1.1 -> 1.2 xnor.ll updated: 1.1 -> 1.2 --- Log message: Use the llvm-upgrade program to upgrade llvm assembly. --- Diffs of the chan

[llvm-commits] CVS: llvm/test/Regression/Analysis/LoadVN/RLE-Eliminate.ll RLE-Preserve-Volatile.ll RLE-Preserve.ll call_cse.ll call_pure_function.ll dependent_loads.ll undefined_load.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Analysis/LoadVN: RLE-Eliminate.ll updated: 1.4 -> 1.5 RLE-Preserve-Volatile.ll updated: 1.3 -> 1.4 RLE-Preserve.ll updated: 1.4 -> 1.5 call_cse.ll updated: 1.1 -> 1.2 call_pure_function.ll updated: 1.1 -> 1.2 dependent_loads.ll updated: 1.3 -> 1.4 undefi

[llvm-commits] CVS: llvm/test/Regression/Transforms/FunctionResolve/2002-08-19-ResolveGlobalVars.ll 2002-08-19-ResolveGlobalVarsEasier.ll 2002-11-07-RetMismatch.ll 2002-11-09-ExternFn.ll 2003-04-18-Fo

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/FunctionResolve: 2002-08-19-ResolveGlobalVars.ll updated: 1.6 -> 1.7 2002-08-19-ResolveGlobalVarsEasier.ll updated: 1.4 -> 1.5 2002-11-07-RetMismatch.ll updated: 1.4 -> 1.5 2002-11-09-ExternFn.ll updated: 1.5 -> 1.6 2003-04-18-ForwardDeclGloba

[llvm-commits] CVS: llvm/test/Regression/Transforms/DSAnalysis/arraymerge.ll arraytest.ll badcases.ll basictest.ll fieldmerge.ll goodcases.ll indcalltest.ll misctests.ll physicalsubtype.ll recursion.l

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/DSAnalysis: arraymerge.ll updated: 1.4 -> 1.5 arraytest.ll updated: 1.5 -> 1.6 badcases.ll updated: 1.5 -> 1.6 basictest.ll updated: 1.5 -> 1.6 fieldmerge.ll updated: 1.5 -> 1.6 goodcases.ll updated: 1.4 -> 1.5 indcalltest.ll updated: 1.4 -> 1

[llvm-commits] CVS: llvm/test/Regression/Transforms/ArgumentPromotion/aggregate-promote.ll basictest.ll chained.ll control-flow.ll control-flow2.ll recursion.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/ArgumentPromotion: aggregate-promote.ll updated: 1.2 -> 1.3 basictest.ll updated: 1.1 -> 1.2 chained.ll updated: 1.1 -> 1.2 control-flow.ll updated: 1.1 -> 1.2 control-flow2.ll updated: 1.1 -> 1.2 recursion.ll updated: 1.3 -> 1.4 --- Log messa

[llvm-commits] CVS: llvm/test/Regression/Transforms/LCSSA/2006-06-03-IncorrectIDFPhis.ll 2006-06-12-MultipleExitsSameBlock.ll 2006-07-09-NoDominator.ll 2006-10-31-UnreachableBlock-2.ll 2006-10-31-Unre

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/LCSSA: 2006-06-03-IncorrectIDFPhis.ll updated: 1.1 -> 1.2 2006-06-12-MultipleExitsSameBlock.ll updated: 1.1 -> 1.2 2006-07-09-NoDominator.ll updated: 1.1 -> 1.2 2006-10-31-UnreachableBlock-2.ll updated: 1.1 -> 1.2 2006-10-31-UnreachableBlock.l

[llvm-commits] CVS: llvm/test/Regression/Transforms/LowerInvoke/2003-12-10-Crash.llx 2004-02-29-PHICrash.llx 2005-08-03-InvokeWithPHI.ll 2005-08-03-InvokeWithPHIUse.ll basictest.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/LowerInvoke: 2003-12-10-Crash.llx updated: 1.1 -> 1.2 2004-02-29-PHICrash.llx updated: 1.1 -> 1.2 2005-08-03-InvokeWithPHI.ll updated: 1.1 -> 1.2 2005-08-03-InvokeWithPHIUse.ll updated: 1.1 -> 1.2 basictest.ll updated: 1.1 -> 1.2 --- Log messa

[llvm-commits] CVS: llvm/test/Regression/CodeGen/CBackend/2002-05-16-NameCollide.ll 2002-05-21-MissingReturn.ll 2002-08-19-ConstPointerRef.ll 2002-08-19-ConstantExpr.ll 2002-08-19-DataPointer.ll 2002-

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/CodeGen/CBackend: 2002-05-16-NameCollide.ll updated: 1.2 -> 1.3 2002-05-21-MissingReturn.ll updated: 1.2 -> 1.3 2002-08-19-ConstPointerRef.ll updated: 1.2 -> 1.3 2002-08-19-ConstantExpr.ll updated: 1.3 -> 1.4 2002-08-19-DataPointer.ll updated: 1.2 -> 1.3

[llvm-commits] CVS: llvm/test/Regression/Transforms/BlockPlacement/basictest.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/BlockPlacement: basictest.ll updated: 1.1 -> 1.2 --- Log message: Use the llvm-upgrade program to upgrade llvm assembly. --- Diffs of the changes: (+1 -1) basictest.ll |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: ll

[llvm-commits] CVS: llvm/test/Regression/Transforms/LoopStrengthReduce/2005-08-15-AddRecIV.ll 2005-08-17-OutOfLoopVariant.ll 2005-09-12-UsesOutOutsideOfLoop.ll different-type-ivs.ll dont-hoist-simple-

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/LoopStrengthReduce: 2005-08-15-AddRecIV.ll updated: 1.1 -> 1.2 2005-08-17-OutOfLoopVariant.ll updated: 1.1 -> 1.2 2005-09-12-UsesOutOutsideOfLoop.ll updated: 1.1 -> 1.2 different-type-ivs.ll updated: 1.1 -> 1.2 dont-hoist-simple-loop-constants

[llvm-commits] CVS: llvm/test/Feature/newcasts.ll alignment.ll basictest.ll callingconventions.ll calltest.ll casttest.ll cfgstructures.ll constexpr.ll constpointer.ll escaped_label.ll float.ll forwar

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Feature: newcasts.ll added (r1.1) alignment.ll updated: 1.2 -> 1.3 basictest.ll updated: 1.7 -> 1.8 callingconventions.ll updated: 1.2 -> 1.3 calltest.ll updated: 1.5 -> 1.6 casttest.ll updated: 1.3 -> 1.4 cfgstructures.ll updated: 1.2 -> 1.3 constexpr.ll updated:

[llvm-commits] CVS: llvm/test/Regression/Transforms/GCSE/2002-05-21-NoSharedDominator.ll 2003-06-13-LoadStoreEliminate.ll gcsetests.ll vectorops.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/GCSE: 2002-05-21-NoSharedDominator.ll updated: 1.2 -> 1.3 2003-06-13-LoadStoreEliminate.ll updated: 1.3 -> 1.4 gcsetests.ll updated: 1.4 -> 1.5 vectorops.ll updated: 1.1 -> 1.2 --- Log message: Use the llvm-upgrade program to upgrade llvm ass

[llvm-commits] CVS: llvm/test/Regression/Transforms/SCCP/2002-05-02-EdgeFailure.ll 2002-05-02-MissSecondInst.ll 2002-05-20-MissedIncomingValue.ll 2002-05-21-InvalidSimplify.ll 2002-08-30-GetElementPtr

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/SCCP: 2002-05-02-EdgeFailure.ll updated: 1.3 -> 1.4 2002-05-02-MissSecondInst.ll updated: 1.3 -> 1.4 2002-05-20-MissedIncomingValue.ll updated: 1.2 -> 1.3 2002-05-21-InvalidSimplify.ll updated: 1.2 -> 1.3 2002-08-30-GetElementPtrTest.ll update

[llvm-commits] CVS: llvm/test/Regression/Transforms/LevelRaise/2002-02-11-ArrayShape.ll 2002-02-14-BadAssertion.ll 2002-03-11-Calls.ll 2002-03-14-ConvertableToGEPHang.ll 2002-03-20-BadCodegen.ll 2002-

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/LevelRaise: 2002-02-11-ArrayShape.ll updated: 1.6 -> 1.7 2002-02-14-BadAssertion.ll updated: 1.3 -> 1.4 2002-03-11-Calls.ll updated: 1.2 -> 1.3 2002-03-14-ConvertableToGEPHang.ll updated: 1.5 -> 1.6 2002-03-20-BadCodegen.ll updated: 1.4 -> 1.5

[llvm-commits] CVS: llvm/test/Regression/Transforms/CondProp/2006-08-14-SingleEntryPhiCrash.ll 2006-11-01-PhiNodeCrash.ll basictest.ll phisimplify.ll phisimplify2.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/CondProp: 2006-08-14-SingleEntryPhiCrash.ll updated: 1.1 -> 1.2 2006-11-01-PhiNodeCrash.ll updated: 1.1 -> 1.2 basictest.ll updated: 1.1 -> 1.2 phisimplify.ll updated: 1.1 -> 1.2 phisimplify2.ll updated: 1.1 -> 1.2 --- Log message: Use the ll

[llvm-commits] CVS: llvm/test/Regression/Analysis/GlobalsModRef/aliastest.ll chaining-analysis.ll indirect-global.ll modreftest.ll purecse.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Analysis/GlobalsModRef: aliastest.ll updated: 1.1 -> 1.2 chaining-analysis.ll updated: 1.1 -> 1.2 indirect-global.ll updated: 1.1 -> 1.2 modreftest.ll updated: 1.1 -> 1.2 purecse.ll updated: 1.3 -> 1.4 --- Log message: Use the llvm-upgrade program to up

[llvm-commits] CVS: llvm/test/Regression/Transforms/TailCallElim/accum_recursion.ll accum_recursion_constant_arg.ll ackermann.ll dont-tce-tail-marked-call.ll intervening-inst.ll move_alloca_for_tail_c

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/TailCallElim: accum_recursion.ll updated: 1.1 -> 1.2 accum_recursion_constant_arg.ll updated: 1.1 -> 1.2 ackermann.ll updated: 1.1 -> 1.2 dont-tce-tail-marked-call.ll updated: 1.1 -> 1.2 intervening-inst.ll updated: 1.1 -> 1.2 move_alloca_for_

[llvm-commits] CVS: llvm/test/Regression/Transforms/DeadArgElim/2006-06-27-struct-ret.ll basictest.ll dead_vaargs.ll deadretval.ll deadretval2.ll

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/DeadArgElim: 2006-06-27-struct-ret.ll updated: 1.1 -> 1.2 basictest.ll updated: 1.4 -> 1.5 dead_vaargs.ll updated: 1.1 -> 1.2 deadretval.ll updated: 1.1 -> 1.2 deadretval2.ll updated: 1.1 -> 1.2 --- Log message: Use the llvm-upgrade program t

[llvm-commits] CVS: llvm/test/Regression/Transforms/DeadStoreElimination/2004-11-28-LiveStoreDeleted.ll 2004-12-28-PartialStore.ll 2005-11-30-vaarg.ll 2006-06-27-AST-Remove.ll PartialStore.ll alloca.l

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/DeadStoreElimination: 2004-11-28-LiveStoreDeleted.ll updated: 1.1 -> 1.2 2004-12-28-PartialStore.ll updated: 1.2 -> 1.3 2005-11-30-vaarg.ll updated: 1.1 -> 1.2 2006-06-27-AST-Remove.ll updated: 1.1 -> 1.2 PartialStore.ll updated: 1.1 -> 1.2 al

[llvm-commits] CVS: llvm/test/Regression/Analysis/BasicAA/2003-02-26-AccessSizeTest.ll 2003-03-04-GEPCrash.ll 2003-04-22-GEPProblem.ll 2003-04-25-GEPCrash.ll 2003-05-21-GEP-Problem.ll 2003-06-01-Alias

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Analysis/BasicAA: 2003-02-26-AccessSizeTest.ll updated: 1.2 -> 1.3 2003-03-04-GEPCrash.ll updated: 1.3 -> 1.4 2003-04-22-GEPProblem.ll updated: 1.2 -> 1.3 2003-04-25-GEPCrash.ll updated: 1.2 -> 1.3 2003-05-21-GEP-Problem.ll updated: 1.4 -> 1.5 2003-06-01

[llvm-commits] CVS: llvm/test/Regression/Transforms/GlobalDCE/2002-07-17-CastRef.ll 2002-07-17-ConstantRef.ll 2002-08-17-FunctionDGE.ll 2002-08-17-WorkListTest.ll 2002-09-12-Redeletion.ll 2003-07-01-S

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/GlobalDCE: 2002-07-17-CastRef.ll updated: 1.2 -> 1.3 2002-07-17-ConstantRef.ll updated: 1.2 -> 1.3 2002-08-17-FunctionDGE.ll updated: 1.3 -> 1.4 2002-08-17-WorkListTest.ll updated: 1.4 -> 1.5 2002-09-12-Redeletion.ll updated: 1.2 -> 1.3 2003-0

[llvm-commits] CVS: llvm/test/Regression/Transforms/CodeExtractor/2004-03-13-LoopExtractorCrash.ll 2004-03-14-DominanceProblem.ll 2004-03-14-NoSwitchSupport.ll 2004-03-17-MissedLiveIns.ll 2004-03-17-O

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/CodeExtractor: 2004-03-13-LoopExtractorCrash.ll updated: 1.1 -> 1.2 2004-03-14-DominanceProblem.ll updated: 1.1 -> 1.2 2004-03-14-NoSwitchSupport.ll updated: 1.1 -> 1.2 2004-03-17-MissedLiveIns.ll updated: 1.1 -> 1.2 2004-03-17-OutputMismatch.

[llvm-commits] CVS: llvm/test/Regression/Transforms/LICM/2003-02-26-LoopExitNotDominated.ll 2003-02-27-NestedLoopExitBlocks.ll 2003-02-27-PreheaderExitNodeUpdate.ll 2003-02-27-PreheaderProblem.ll 2003

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/LICM: 2003-02-26-LoopExitNotDominated.ll updated: 1.2 -> 1.3 2003-02-27-NestedLoopExitBlocks.ll updated: 1.3 -> 1.4 2003-02-27-PreheaderExitNodeUpdate.ll updated: 1.2 -> 1.3 2003-02-27-PreheaderProblem.ll updated: 1.3 -> 1.4 2003-02-27-StoreSi

[llvm-commits] CVS: llvm/test/Regression/Transforms/TailDup/2003-06-24-Simpleloop.ll 2003-07-22-InfiniteLoop.ll 2003-08-23-InvalidatedPointers.ll 2003-08-31-UnreachableBlocks.ll 2004-04-01-DemoteRegTo

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/TailDup: 2003-06-24-Simpleloop.ll updated: 1.2 -> 1.3 2003-07-22-InfiniteLoop.ll updated: 1.2 -> 1.3 2003-08-23-InvalidatedPointers.ll updated: 1.2 -> 1.3 2003-08-31-UnreachableBlocks.ll updated: 1.1 -> 1.2 2004-04-01-DemoteRegToStack.llx upda

[llvm-commits] CVS: llvm/test/Regression/Transforms/Mem2Reg/2002-03-28-UninitializedVal.ll 2002-05-01-ShouldNotPromoteThisAlloca.ll 2003-04-10-DFNotFound.ll 2003-04-18-DeadBlockProblem.ll 2003-04-24-M

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/Mem2Reg: 2002-03-28-UninitializedVal.ll updated: 1.2 -> 1.3 2002-05-01-ShouldNotPromoteThisAlloca.ll updated: 1.2 -> 1.3 2003-04-10-DFNotFound.ll updated: 1.2 -> 1.3 2003-04-18-DeadBlockProblem.ll updated: 1.2 -> 1.3 2003-04-24-MultipleIdentic

[llvm-commits] CVS: llvm/test/Regression/Transforms/PruneEH/2003-09-14-ExternalCall.llx 2003-11-21-PHIUpdate.llx recursivetest.llx simplenoreturntest.ll simpletest.llx

2006-12-01 Thread Reid Spencer
Changes in directory llvm/test/Regression/Transforms/PruneEH: 2003-09-14-ExternalCall.llx updated: 1.1 -> 1.2 2003-11-21-PHIUpdate.llx updated: 1.1 -> 1.2 recursivetest.llx updated: 1.2 -> 1.3 simplenoreturntest.ll updated: 1.1 -> 1.2 simpletest.llx updated: 1.2 -> 1.3 --- Log message: Use the

  1   2   >