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

2007-01-15 Thread Jeff Cohen
Changes in directory llvm/win32/VMCore: VMCore.vcproj updated: 1.25 - 1.26 --- 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.25

[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/2003-07-06-IntOverflow.c

2007-01-12 Thread Jeff Cohen
Changes in directory llvm-test/SingleSource/UnitTests: 2003-07-06-IntOverflow.c updated: 1.2 - 1.3 --- Log message: Make test correct on 64-bit systems. --- Diffs of the changes: (+3 -3) 2003-07-06-IntOverflow.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) Index:

[llvm-commits] CVS: llvm/configure

2007-01-12 Thread Jeff Cohen
Changes in directory llvm: configure updated: 1.262 - 1.263 --- Log message: '==' is not a legal test operator on BSD. Use '='. --- Diffs of the changes: (+6 -6) configure | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) Index: llvm/configure diff -u

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

2007-01-12 Thread Jeff Cohen
Changes in directory llvm/autoconf: configure.ac updated: 1.257 - 1.258 --- Log message: '==' is not a legal test operator on BSD. Use '='. --- Diffs of the changes: (+6 -6) configure.ac | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) Index:

[llvm-commits] llvm-gcc broken again

2007-01-11 Thread Jeff Cohen
Seriously: Is it possible for the public mirror to be buildable for more than a few hours per week? g++40 -c -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -pedantic -Wno-long-long -Wno-variadic-macros -fno-common -DHAVE_CONFIG_H -Wno-unused -DTARGET_NAME=\amd64-unknown-freebsd6.1\ -DENABLE_LLVM

Re: [llvm-commits] [llvm-gcc] Changes In Boolean (please commit)

2007-01-11 Thread Jeff Cohen
The patch doesn't work: g++40 -c -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -pedantic -Wno-long-long -Wno-variadic-macros -fno-common -DHAVE_CONFIG_H -Wno-unused -DTARGET_NAME=\amd64-unknown-freebsd6.1\ -DENABLE_LLVM -D__STDC_LIMIT_MACROS -I. -I. -I../../gcc -I../../gcc/.

Re: [llvm-commits] [llvm-gcc] Changes In Boolean (please commit)

2007-01-11 Thread Jeff Cohen
think I'll just go away for a few weeks and wait for the dust to settle Jeff Cohen wrote: The patch doesn't work: g++40 -c -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -pedantic -Wno-long-long -Wno-variadic-macros -fno-common -DHAVE_CONFIG_H -Wno-unused -DTARGET_NAME=\amd64-unknown-freebsd6.1

Re: [llvm-commits] [llvm-gcc] Changes In Boolean (please commit)

2007-01-11 Thread Jeff Cohen
See my previous message. I updated, and LLVM no longer builds. Reid Spencer wrote: You need to update your LLVM tree. I just committed the BoolTy-Int1Ty change and the patch handles that change as well. Reid. On Thu, 2007-01-11 at 12:24 -0800, Jeff Cohen wrote: The patch doesn't work

Re: [llvm-commits] [llvm-gcc] Changes In Boolean (please commit)

2007-01-11 Thread Jeff Cohen
/llvm/obj/lib/AsmParser/Debug/Lexer.o] Error 1 I think I'll just go away for a few weeks and wait for the dust to settle = Reid Spencer wrote: Jeff, That just can't be .. see below On Thu, 2007-01-11 at 12:57 -0800, Jeff Cohen wrote: See my previous message. I

Re: [llvm-commits] [llvm-gcc] Changes In Boolean (please commit)

2007-01-11 Thread Jeff Cohen
Reid Spencer wrote: On Thu, 2007-01-11 at 13:33 -0800, Jeff Cohen wrote: Look at the error more closely. It is not complaining about an unused label. That is a warning. It is complaining about using an undefined label. I have no local changes. Ah, yes, you're right

Re: [llvm-commits] [llvm-gcc] Changes In Boolean (please commit)

2007-01-11 Thread Jeff Cohen
Jeff Cohen wrote: Reid Spencer wrote: On Thu, 2007-01-11 at 13:33 -0800, Jeff Cohen wrote: Look at the error more closely. It is not complaining about an unused label. That is a warning. It is complaining about using an undefined label. I have no local changes

Re: [llvm-commits] [llvm-gcc] Changes In Boolean (please commit)

2007-01-11 Thread Jeff Cohen
Jeff Cohen wrote: Jeff Cohen wrote: Reid Spencer wrote: On Thu, 2007-01-11 at 13:33 -0800, Jeff Cohen wrote: Look at the error more closely. It is not complaining about an unused label. That is a warning. It is complaining about using an undefined label

Re: [llvm-commits] [llvm-gcc] Changes In Boolean (please commit)

2007-01-11 Thread Jeff Cohen
Reid Spencer wrote: On Thu, 2007-01-11 at 13:19 -0800, Jeff Cohen wrote: Not that message. this one: = OK, so I figured I need to update LLVM. Now that doesn't build: llvm[2]: Compiling Lexer.cpp for Debug build Lexer.cpp: In function 'int llvmAsmlex()': Lexer.cpp

Re: [llvm-commits] [llvm-gcc] Changes In Boolean (please commit)

2007-01-11 Thread Jeff Cohen
When diffing the code generated by my version of flex against Lexer.cpp.cvs, and excluding the #line directives, I get this: 23,24c23 * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $ * $FreeBSD: src/usr.bin/lex/flex.skl,v 1.8 2004/01/06 19:03:44 nectar

[llvm-commits] CVS: llvm-test/RunSafely.sh TimedExec.sh

2007-01-10 Thread Jeff Cohen
Changes in directory llvm-test: RunSafely.sh updated: 1.24 - 1.25 TimedExec.sh updated: 1.4 - 1.5 --- Log message: The proper operator for testing string equality is =, not ==. --- Diffs of the changes: (+2 -2) RunSafely.sh |2 +- TimedExec.sh |2 +- 2 files changed, 2

Re: [llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/MiBench/consumer-lame/.cvsignore

2007-01-09 Thread Jeff Cohen
The repository is broken: cvs update: failed to create lock directory for `/var/cvs/llvm/llvm-test/MultiSource/Benchmarks/MiBench/consumer-typeset/data' (/var/cvs/llvm/llvm-test/MultiSource/Benchmarks/MiBench/consumer-typeset/data/#cvs.lock): Permission denied cvs update: failed to obtain dir

Re: [llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/MiBench/consumer-lame/.cvsignore

2007-01-09 Thread Jeff Cohen
Jeff Cohen wrote: It worked. Now... I can *finally* run the regression tests on freebsd/amd64 and see how well they work with everything built with gcc 4.0! (just 4 unexpected failures with gmake check). That didn't take long: it's a disaster. No obvious single cause of failure

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

2007-01-08 Thread Jeff Cohen
Changes in directory llvm/win32/VMCore: VMCore.vcproj updated: 1.24 - 1.25 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+0 -3) VMCore.vcproj |3 --- 1 files changed, 3 deletions(-) Index: llvm/win32/VMCore/VMCore.vcproj diff -u llvm/win32/VMCore/VMCore.vcproj:1.24

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

2007-01-08 Thread Jeff Cohen
Changes in directory llvm/win32/Transforms: Transforms.vcproj updated: 1.23 - 1.24 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+0 -3) Transforms.vcproj |3 --- 1 files changed, 3 deletions(-) Index: llvm/win32/Transforms/Transforms.vcproj diff -u

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

2007-01-08 Thread Jeff Cohen
Changes in directory llvm/lib/Transforms/Scalar: InstructionCombining.cpp updated: 1.587 - 1.588 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+1 -1) InstructionCombining.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

Re: [llvm-commits] CVS: llvm/lib/AsmParser/Lexer.l llvmAsmParser.y

2006-12-31 Thread Jeff Cohen
A semi-colon appears to be in the wrong place, as marked below. Some versions of bison complain, while others silently accept it (including the newest ones)--though how they interpret the grammar is not clear. Reid Spencer wrote: Changes in directory llvm/lib/AsmParser: Lexer.l updated:

Re: [llvm-commits] CVS: llvm/lib/AsmParser/Lexer.l llvmAsmParser.y

2006-12-31 Thread Jeff Cohen
Only half-fixed. The extra semi-colon is still there. Reid Spencer wrote: Jeff, This is now fixed. I wish the newer versions of bison would at least warn about this! Reid. On Sun, 2006-12-31 at 12:42 -0800, Jeff Cohen wrote: A semi-colon appears to be in the wrong place, as marked

Re: [llvm-commits] CVS: llvm/lib/Bytecode/Writer/Writer.cpp

2006-12-17 Thread Jeff Cohen
VC++ is happy again. Thanks. Bill Wendling wrote: Again, I'm really sorry that this cruft got in there...The patch I did was rather big and a few things escaped my attention. -bw ___ llvm-commits mailing list llvm-commits@cs.uiuc.edu

Re: [llvm-commits] CVS: llvm/lib/Bytecode/Writer/Writer.cpp

2006-12-16 Thread Jeff Cohen
This breaks the VC++ build with a binary '' : no operator found which takes a left-hand operand of type 'llvm::OStream' (or there is no acceptable conversion) error. I would try to fix it, but what is the purpose of this code other than to print some random hex digits? Bill Wendling wrote:

Re: [llvm-commits] CVS: llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h LiveInterval.h LiveIntervalAnalysis.h MachineBasicBlock.h MachineConstantPool.h MachineFunction.h MachineInstr.h MachineJum

2006-12-16 Thread Jeff Cohen
This also breaks VC++ as there is no declaration for llvm::createGraphColoringRegisterAllocator(). As in, there isn't one anywhere in LLVM that I can find. I don't know how it compiles with gcc. Bill Wendling wrote: Index: llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h diff -u

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

2006-12-15 Thread Jeff Cohen
Changes in directory llvm/lib/VMCore: Constants.cpp updated: 1.187 - 1.188 --- Log message: Partial unbreak of VC++ (stream stuff has no easy fix). --- Diffs of the changes: (+1 -0) Constants.cpp |1 + 1 files changed, 1 insertion(+) Index: llvm/lib/VMCore/Constants.cpp diff -u

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

2006-12-15 Thread Jeff Cohen
Changes in directory llvm/win32/Analysis: Analysis.vcproj updated: 1.21 - 1.22 --- Log message: Partial unbreak of VC++ (stream stuff has no easy fix). --- Diffs of the changes: (+0 -68) Analysis.vcproj | 68 1 files changed, 68

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

2006-12-15 Thread Jeff Cohen
Changes in directory llvm/include/llvm/CodeGen: LiveInterval.h updated: 1.30 - 1.31 MachineInstr.h updated: 1.205 - 1.206 --- Log message: Complete unbreak of VC++ (Chris identified the simple fix). --- Diffs of the changes: (+2 -0) LiveInterval.h |1 + MachineInstr.h |1 + 2 files

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

2006-12-15 Thread Jeff Cohen
Changes in directory llvm/include/llvm/CodeGen: LiveInterval.h updated: 1.31 - 1.32 MachineBasicBlock.h updated: 1.51 - 1.52 MachineInstr.h updated: 1.206 - 1.207 --- Log message: An even better unbreakage... --- Diffs of the changes: (+4 -18) LiveInterval.h |6 +-

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

2006-12-15 Thread Jeff Cohen
Changes in directory llvm/lib/CodeGen: LiveInterval.cpp updated: 1.40 - 1.41 MachineBasicBlock.cpp updated: 1.36 - 1.37 MachineInstr.cpp updated: 1.138 - 1.139 --- Log message: An even better unbreakage... --- Diffs of the changes: (+24 -0) LiveInterval.cpp |7 +++

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

2006-12-15 Thread Jeff Cohen
link time optimizations. Because this is still compiled by GCC right now, this won't be done and debug outputs will still be in the code. That is, they won't output anything, but the call will still be there. -bw On Dec 15, 2006, at 2:57 PM, Jeff Cohen wrote: Changes in directory llvm

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

2006-12-15 Thread Jeff Cohen
I'll look into making this change. Part of the problem is that VC++ doesn't like *OS.stream() in a header file when ostream isn't included, even if the declaration of std::basic_ostream shouldn't be needed (but doesn't have a problem with it in a .cpp file, probably because it isn't inlined

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

2006-12-15 Thread Jeff Cohen
, at 3:58 PM, Jeff Cohen wrote: I'll look into making this change. Part of the problem is that VC++ doesn't like *OS.stream() in a header file when ostream isn't included, even if the declaration of std::basic_ostream shouldn't be needed (but doesn't have a problem with it in a .cpp file

[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/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-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-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/include/llvm/CodeGen/MachineConstantPool.h SelectionDAG.h

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/include/llvm/CodeGen: MachineConstantPool.h updated: 1.21 - 1.22 SelectionDAG.h updated: 1.143 - 1.144 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+4 -3) MachineConstantPool.h |3 ++- SelectionDAG.h|4 ++-- 2 files changed, 4

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

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/lib/Target/X86: X86ISelDAGToDAG.cpp updated: 1.121 - 1.122 X86RegisterInfo.h updated: 1.41 - 1.42 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+4 -2) X86ISelDAGToDAG.cpp |2 +- X86RegisterInfo.h |4 +++- 2 files changed, 4

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

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/lib/Transforms/Scalar: PredicateSimplifier.cpp updated: 1.32 - 1.33 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+3 -3) PredicateSimplifier.cpp |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) Index:

[llvm-commits] CVS: llvm/utils/TableGen/AsmWriterEmitter.cpp CodeGenInstruction.h FileLexer.l InstrInfoEmitter.h

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/utils/TableGen: AsmWriterEmitter.cpp updated: 1.44 - 1.45 CodeGenInstruction.h updated: 1.20 - 1.21 FileLexer.l updated: 1.31 - 1.32 InstrInfoEmitter.h updated: 1.13 - 1.14 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+6 -3) AsmWriterEmitter.cpp

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

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/tools/llvm-ld: llvm-ld.cpp updated: 1.38 - 1.39 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+1 -1) llvm-ld.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/tools/llvm-ld/llvm-ld.cpp diff -u

[llvm-commits] CVS: llvm/include/llvm/System/Path.h

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/include/llvm/System: Path.h updated: 1.42 - 1.43 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+1 -1) Path.h |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/include/llvm/System/Path.h diff -u

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

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/win32/opt: opt.vcproj updated: 1.4 - 1.5 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+9 -0) opt.vcproj |9 + 1 files changed, 9 insertions(+) Index: llvm/win32/opt/opt.vcproj diff -u llvm/win32/opt/opt.vcproj:1.4

[llvm-commits] CVS: llvm/tools/bugpoint/ExecutionDriver.cpp

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/tools/bugpoint: ExecutionDriver.cpp updated: 1.65 - 1.66 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+1 -1) ExecutionDriver.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/tools/bugpoint/ExecutionDriver.cpp diff -u

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

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/win32/VMCore: VMCore.vcproj updated: 1.21 - 1.22 --- 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.21

[llvm-commits] CVS: llvm/include/llvm/Analysis/Dominators.h LoopInfo.h

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/include/llvm/Analysis: Dominators.h updated: 1.61 - 1.62 LoopInfo.h updated: 1.59 - 1.60 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+3 -3) Dominators.h |4 ++-- LoopInfo.h |2 +- 2 files changed, 3 insertions(+), 3 deletions(-)

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

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/win32/Transforms: Transforms.vcproj updated: 1.22 - 1.23 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+19 -16) Transforms.vcproj | 35 +++ 1 files changed, 19 insertions(+), 16 deletions(-) Index:

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

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/lib/CodeGen/SelectionDAG: DAGCombiner.cpp updated: 1.236 - 1.237 SelectionDAG.cpp updated: 1.369 - 1.370 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+9 -9) DAGCombiner.cpp |2 +- SelectionDAG.cpp | 16 2 files changed, 9

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

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/lib/CodeGen: BranchFolding.cpp updated: 1.31 - 1.32 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+1 -0) BranchFolding.cpp |1 + 1 files changed, 1 insertion(+) Index: llvm/lib/CodeGen/BranchFolding.cpp diff -u

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

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/win32/analyze: analyze.vcproj updated: 1.7 - 1.8 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+0 -9) analyze.vcproj |9 - 1 files changed, 9 deletions(-) Index: llvm/win32/analyze/analyze.vcproj diff -u

[llvm-commits] CVS: llvm/lib/Transforms/Utils/CloneFunction.cpp

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/lib/Transforms/Utils: CloneFunction.cpp updated: 1.32 - 1.33 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+3 -3) CloneFunction.cpp |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) Index:

[llvm-commits] CVS: llvm/win32/config.h llvm.sln

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/win32: config.h updated: 1.2 - 1.3 llvm.sln updated: 1.26 - 1.27 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+4 -17) config.h |2 ++ llvm.sln | 19 ++- 2 files changed, 4 insertions(+), 17 deletions(-) Index:

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

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/win32/Analysis: Analysis.vcproj updated: 1.19 - 1.20 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+6 -0) Analysis.vcproj |6 ++ 1 files changed, 6 insertions(+) Index: llvm/win32/Analysis/Analysis.vcproj diff -u

[llvm-commits] CVS: llvm/include/llvm/Transforms/Utils/FunctionUtils.h PromoteMemToReg.h

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/include/llvm/Transforms/Utils: FunctionUtils.h updated: 1.8 - 1.9 PromoteMemToReg.h updated: 1.8 - 1.9 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+3 -3) FunctionUtils.h |2 +- PromoteMemToReg.h |4 ++-- 2 files changed, 3

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

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/win32/x86: x86.vcproj updated: 1.24 - 1.25 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+30 -18) x86.vcproj | 48 ++-- 1 files changed, 30 insertions(+), 18 deletions(-) Index:

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

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/win32/bugpoint: bugpoint.vcproj updated: 1.4 - 1.5 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+9 -0) bugpoint.vcproj |9 + 1 files changed, 9 insertions(+) Index: llvm/win32/bugpoint/bugpoint.vcproj diff -u

[llvm-commits] CVS: llvm/include/llvm/Bytecode/Archive.h

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/include/llvm/Bytecode: Archive.h updated: 1.18 - 1.19 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+1 -1) Archive.h |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/include/llvm/Bytecode/Archive.h diff -u

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

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.58 - 1.59 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+5 -0) Path.inc |5 + 1 files changed, 5 insertions(+) Index: llvm/lib/System/Win32/Path.inc diff -u llvm/lib/System/Win32/Path.inc:1.58

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

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/include/llvm/Support: Compressor.h updated: 1.8 - 1.9 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+1 -0) Compressor.h |1 + 1 files changed, 1 insertion(+) Index: llvm/include/llvm/Support/Compressor.h diff -u

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

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/win32/CodeGen: CodeGen.vcproj updated: 1.24 - 1.25 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+27 -6) CodeGen.vcproj | 33 +++-- 1 files changed, 27 insertions(+), 6 deletions(-) Index:

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

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/win32/System: System.vcproj updated: 1.17 - 1.18 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+12 -0) System.vcproj | 12 1 files changed, 12 insertions(+) Index: llvm/win32/System/System.vcproj diff -u

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

2006-11-05 Thread Jeff Cohen
Changes in directory llvm/include/llvm/ADT: FoldingSet.h updated: 1.4 - 1.5 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+2 -0) FoldingSet.h |2 ++ 1 files changed, 2 insertions(+) Index: llvm/include/llvm/ADT/FoldingSet.h diff -u

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

2006-05-06 Thread Jeff Cohen
Changes in directory llvm/lib/CodeGen: AsmPrinter.cpp updated: 1.67 - 1.68 --- Log message: Fix some loose ends in MASM support. --- Diffs of the changes: (+5 -5) AsmPrinter.cpp | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) Index: llvm/lib/CodeGen/AsmPrinter.cpp

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

2006-05-06 Thread Jeff Cohen
Changes in directory llvm/lib/Target/X86: X86AsmPrinter.cpp updated: 1.178 - 1.179 X86IntelAsmPrinter.cpp updated: 1.42 - 1.43 --- Log message: Fix some loose ends in MASM support. --- Diffs of the changes: (+72 -60) X86AsmPrinter.cpp |3 + X86IntelAsmPrinter.cpp | 129

[llvm-commits] CVS: llvm/lib/Bytecode/Archive/Archive.cpp

2006-05-06 Thread Jeff Cohen
Changes in directory llvm/lib/Bytecode/Archive: Archive.cpp updated: 1.10 - 1.11 --- Log message: Apply bug fix supplied by Greg Pettyjohn for a bug he found: 'invalid' is not a legal path on Windows. --- Diffs of the changes: (+1 -1) Archive.cpp |2 +- 1 files changed, 1

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

2006-05-06 Thread Jeff Cohen
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.41 - 1.42 --- Log message: Unlike Unix, Windows won't let a file be implicitly replaced via renaming without explicit permission. --- Diffs of the changes: (+1 -1) Path.inc |2 +- 1 files changed, 1 insertion(+), 1

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

2006-05-04 Thread Jeff Cohen
Changes in directory llvm/lib/Target/X86: X86AsmPrinter.cpp updated: 1.176 - 1.177 --- Log message: Make Intel syntax the default when LLVM is built with VC++. --- Diffs of the changes: (+6 -1) X86AsmPrinter.cpp |7 ++- 1 files changed, 6 insertions(+), 1 deletion(-) Index:

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

2006-05-04 Thread Jeff Cohen
Changes in directory llvm/lib/Target/X86: X86IntelAsmPrinter.cpp updated: 1.38 - 1.39 --- Log message: Make external globals public; other minor cleanup. --- Diffs of the changes: (+17 -15) X86IntelAsmPrinter.cpp | 32 +--- 1 files changed, 17 insertions(+),

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

2006-05-04 Thread Jeff Cohen
Changes in directory llvm/lib/CodeGen/SelectionDAG: ScheduleDAGList.cpp updated: 1.54 - 1.55 --- Log message: Fix VC++ compilation error. --- Diffs of the changes: (+1 -1) ScheduleDAGList.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

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

2006-05-02 Thread Jeff Cohen
Changes in directory llvm/win32/CodeGen: CodeGen.vcproj updated: 1.23 - 1.24 --- Log message: Keep Visual Studio happy. --- Diffs of the changes: (+0 -3) CodeGen.vcproj |3 --- 1 files changed, 3 deletions(-) Index: llvm/win32/CodeGen/CodeGen.vcproj diff -u

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

2006-05-01 Thread Jeff Cohen
Changes in directory llvm/include/llvm/CodeGen: AsmPrinter.h updated: 1.32 - 1.33 --- Log message: Make Intel syntax mode friendlier to Microsoft ML assembler (still needs more work). --- Diffs of the changes: (+6 -1) AsmPrinter.h |7 ++- 1 files changed, 6 insertions(+), 1

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

2006-05-01 Thread Jeff Cohen
Changes in directory llvm/lib/CodeGen: AsmPrinter.cpp updated: 1.60 - 1.61 --- Log message: Make Intel syntax mode friendlier to Microsoft ML assembler (still needs more work). --- Diffs of the changes: (+16 -10) AsmPrinter.cpp | 26 -- 1 files changed, 16

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

2006-05-01 Thread Jeff Cohen
Changes in directory llvm/lib/Target/X86: X86IntelAsmPrinter.cpp updated: 1.31 - 1.32 X86IntelAsmPrinter.h updated: 1.15 - 1.16 --- Log message: Make Intel syntax mode friendlier to Microsoft ML assembler (still needs more work). --- Diffs of the changes: (+97 -17) X86IntelAsmPrinter.cpp

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

2006-05-01 Thread Jeff Cohen
Changes in directory llvm/include/llvm/CodeGen: AsmPrinter.h updated: 1.33 - 1.34 --- Log message: Finish support for Microsoft ML/MASM. May still be a few rough edges. --- Diffs of the changes: (+3 -1) AsmPrinter.h |4 +++- 1 files changed, 3 insertions(+), 1 deletion(-) Index:

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

2006-05-01 Thread Jeff Cohen
Changes in directory llvm/lib/CodeGen: AsmPrinter.cpp updated: 1.61 - 1.62 --- Log message: De-virtualize EmitZeroes. --- Diffs of the changes: (+7 -3) AsmPrinter.cpp | 10 +++--- 1 files changed, 7 insertions(+), 3 deletions(-) Index: llvm/lib/CodeGen/AsmPrinter.cpp diff -u

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

2006-05-01 Thread Jeff Cohen
Changes in directory llvm/lib/CodeGen: AsmPrinter.cpp updated: 1.62 - 1.63 --- Log message: De-virtualize SwitchSection. --- Diffs of the changes: (+42 -10) AsmPrinter.cpp | 52 ++-- 1 files changed, 42 insertions(+), 10 deletions(-)

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

2006-05-01 Thread Jeff Cohen
Changes in directory llvm/include/llvm/CodeGen: AsmPrinter.h updated: 1.35 - 1.36 --- Log message: De-virtualize SwitchSection. --- Diffs of the changes: (+2 -3) AsmPrinter.h |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) Index: llvm/include/llvm/CodeGen/AsmPrinter.h diff

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

2006-05-01 Thread Jeff Cohen
Changes in directory llvm/lib/Target/X86: X86IntelAsmPrinter.cpp updated: 1.34 - 1.35 X86IntelAsmPrinter.h updated: 1.18 - 1.19 --- Log message: De-virtualize SwitchSection. --- Diffs of the changes: (+2 -27) X86IntelAsmPrinter.cpp | 28 ++-- X86IntelAsmPrinter.h

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

2006-04-29 Thread Jeff Cohen
Changes in directory llvm/lib/Target/X86: X86JITInfo.cpp updated: 1.16 - 1.17 --- Log message: Mingw32 patches supplied by Anton Korobeynikov. --- Diffs of the changes: (+2 -2) X86JITInfo.cpp |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index:

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

2006-04-29 Thread Jeff Cohen
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.40 - 1.41 --- Log message: Mingw32 patches supplied by Anton Korobeynikov. --- Diffs of the changes: (+1 -1) Path.inc |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/System/Win32/Path.inc diff -u

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

2006-04-26 Thread Jeff Cohen
Changes in directory llvm/docs: FAQ.html updated: 1.33 - 1.34 --- Log message: Fix typo. --- Diffs of the changes: (+2 -2) FAQ.html |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/docs/FAQ.html diff -u llvm/docs/FAQ.html:1.33 llvm/docs/FAQ.html:1.34 ---

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

2006-04-26 Thread Jeff Cohen
Changes in directory llvm/docs: FAQ.html updated: 1.35 - 1.36 --- Log message: Actually, semantical doesn't appear to be a word. --- Diffs of the changes: (+2 -2) FAQ.html |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/docs/FAQ.html diff -u

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

2006-04-20 Thread Jeff Cohen
Changes in directory llvm/win32/Target: Target.vcproj updated: 1.13 - 1.14 --- Log message: Keep Visual Studio informed. --- Diffs of the changes: (+0 -6) Target.vcproj |6 -- 1 files changed, 6 deletions(-) Index: llvm/win32/Target/Target.vcproj diff -u

[llvm-commits] CVS: llvm-test/MultiSource/Applications/hexxagon/hexxagonmove.cpp

2006-04-17 Thread Jeff Cohen
Changes in directory llvm-test/MultiSource/Applications/hexxagon: hexxagonmove.cpp updated: 1.3 - 1.4 --- Log message: Add checks for __OpenBSD__. --- Diffs of the changes: (+1 -1) hexxagonmove.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/Olden/voronoi/newvor.c

2006-04-17 Thread Jeff Cohen
Changes in directory llvm-test/MultiSource/Benchmarks/Olden/voronoi: newvor.c updated: 1.10 - 1.11 --- Log message: Add checks for __OpenBSD__. --- Diffs of the changes: (+1 -1) newvor.c |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm-test/SingleSource/Benchmarks/Misc/mandel.c

2006-04-17 Thread Jeff Cohen
Changes in directory llvm-test/SingleSource/Benchmarks/Misc: mandel.c updated: 1.10 - 1.11 --- Log message: Add checks for __OpenBSD__. --- Diffs of the changes: (+1 -1) mandel.c |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm/lib/System/Mutex.cpp

2006-04-17 Thread Jeff Cohen
Changes in directory llvm/lib/System: Mutex.cpp updated: 1.6 - 1.7 --- Log message: Add checks for __OpenBSD__. --- Diffs of the changes: (+1 -1) Mutex.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/System/Mutex.cpp diff -u llvm/lib/System/Mutex.cpp:1.6

[llvm-commits] CVS: llvm-test/SingleSource/Regression/C/2004-08-12-InlinerAndAllocas.c

2006-04-17 Thread Jeff Cohen
Changes in directory llvm-test/SingleSource/Regression/C: 2004-08-12-InlinerAndAllocas.c updated: 1.4 - 1.5 --- Log message: Add checks for __OpenBSD__. --- Diffs of the changes: (+1 -1) 2004-08-12-InlinerAndAllocas.c |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/MallocBench/make/arscan.c job.c make.h misc.c read.c

2006-04-17 Thread Jeff Cohen
Changes in directory llvm-test/MultiSource/Benchmarks/MallocBench/make: arscan.c updated: 1.4 - 1.5 job.c updated: 1.4 - 1.5 make.h updated: 1.4 - 1.5 misc.c updated: 1.4 - 1.5 read.c updated: 1.5 - 1.6 --- Log message: Add checks for __OpenBSD__. --- Diffs of the changes: (+11 -8)

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

2006-04-17 Thread Jeff Cohen
Changes in directory llvm/lib/Target/CBackend: Writer.cpp updated: 1.259 - 1.260 --- Log message: Add checks for __OpenBSD__. --- Diffs of the changes: (+1 -1) Writer.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Target/CBackend/Writer.cpp diff -u

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

2006-04-10 Thread Jeff Cohen
Changes in directory llvm/win32/Transforms: Transforms.vcproj updated: 1.21 - 1.22 --- Log message: Keep Visual Studio happy. --- Diffs of the changes: (+3 -0) Transforms.vcproj |3 +++ 1 files changed, 3 insertions(+) Index: llvm/win32/Transforms/Transforms.vcproj diff -u

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

2006-04-07 Thread Jeff Cohen
Changes in directory llvm/win32/Analysis: Analysis.vcproj updated: 1.18 - 1.19 --- Log message: Get Visual Studio building again. --- Diffs of the changes: (+3 -0) Analysis.vcproj |3 +++ 1 files changed, 3 insertions(+) Index: llvm/win32/Analysis/Analysis.vcproj diff -u

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

2006-04-07 Thread Jeff Cohen
Changes in directory llvm/win32/VMCore: VMCore.vcproj updated: 1.20 - 1.21 --- Log message: Get Visual Studio building again. --- Diffs of the changes: (+0 -3) VMCore.vcproj |3 --- 1 files changed, 3 deletions(-) Index: llvm/win32/VMCore/VMCore.vcproj diff -u

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

2006-04-04 Thread Jeff Cohen
Changes in directory llvm/win32/x86: x86.vcproj updated: 1.23 - 1.24 --- Log message: Fix more tablegen depedency issues in Visual Studio. --- Diffs of the changes: (+2 -2) x86.vcproj |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/win32/x86/x86.vcproj diff -u

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

2006-04-01 Thread Jeff Cohen
Changes in directory llvm/win32/VMCore: VMCore.vcproj updated: 1.19 - 1.20 --- Log message: Fix tablegen related dependencies in Visual Studio. --- Diffs of the changes: (+8 -8) VMCore.vcproj | 16 1 files changed, 8 insertions(+), 8 deletions(-) Index:

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

2006-03-30 Thread Jeff Cohen
Changes in directory llvm/lib/VMCore: Verifier.cpp updated: 1.151 - 1.152 --- Log message: Fix build breakage. --- Diffs of the changes: (+1 -0) Verifier.cpp |1 + 1 files changed, 1 insertion(+) Index: llvm/lib/VMCore/Verifier.cpp diff -u llvm/lib/VMCore/Verifier.cpp:1.151

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

2006-03-27 Thread Jeff Cohen
Changes in directory llvm/win32/VMCore: VMCore.vcproj updated: 1.18 - 1.19 --- Log message: Keep Visual Studio informed. --- Diffs of the changes: (+8 -2) VMCore.vcproj | 10 -- 1 files changed, 8 insertions(+), 2 deletions(-) Index: llvm/win32/VMCore/VMCore.vcproj diff -u

[llvm-commits] CVS: llvm/include/llvm/ExecutionEngine/Interpreter.h JIT.h

2006-03-23 Thread Jeff Cohen
23 20:53:49 2006 *** *** 0 --- 1,39 + //===- ExecutionEngine.h - Abstract Execution Engine Interface --*- C++ -*-===// + // + // The LLVM Compiler Infrastructure + // + // This file was developed by Jeff Cohen and is distributed under the + // University

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

2006-03-23 Thread Jeff Cohen
Changes in directory llvm/tools/lli: lli.cpp updated: 1.55 - 1.56 --- Log message: Get JIT/Interpreter working on Windows again. --- Diffs of the changes: (+2 -1) lli.cpp |3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) Index: llvm/tools/lli/lli.cpp diff -u

<    1   2   3   4   5   >