[llvm-commits] CVS: llvm/include/llvm/Bitcode/ReaderWriter.h

2007-04-29 Thread Chris Lattner
Changes in directory llvm/include/llvm/Bitcode: ReaderWriter.h updated: 1.1 -> 1.2 --- Log message: Switch the bitcode reader interface to take a MemoryBuffer instead of knowing anything about disk I/O itself. This greatly simplifies its interface - eliminating the need for the ReaderWrappers.

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

2007-04-29 Thread Chris Lattner
Changes in directory llvm/tools/llvm-dis: llvm-dis.cpp updated: 1.58 -> 1.59 --- Log message: Switch the bitcode reader interface to take a MemoryBuffer instead of knowing anything about disk I/O itself. This greatly simplifies its interface - eliminating the need for the ReaderWrappers.cpp fi

[llvm-commits] CVS: llvm/lib/Bitcode/Reader/BitcodeReader.cpp BitcodeReader.h ReaderWrappers.cpp

2007-04-29 Thread Chris Lattner
Changes in directory llvm/lib/Bitcode/Reader: BitcodeReader.cpp updated: 1.15 -> 1.16 BitcodeReader.h updated: 1.10 -> 1.11 ReaderWrappers.cpp (r1.2) removed --- Log message: Switch the bitcode reader interface to take a MemoryBuffer instead of knowing anything about disk I/O itself. This grea

[llvm-commits] CVS: llvm/include/llvm/Bitcode/BitstreamReader.h

2007-04-29 Thread Chris Lattner
Changes in directory llvm/include/llvm/Bitcode: BitstreamReader.h updated: 1.5 -> 1.6 --- Log message: make this file self-contained --- Diffs of the changes: (+1 -0) BitstreamReader.h |1 + 1 files changed, 1 insertion(+) Index: llvm/include/llvm/Bitcode/BitstreamReader.h diff -u ll

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

2007-04-29 Thread Chris Lattner
Changes in directory llvm/tools/llvm-bcanalyzer: llvm-bcanalyzer.cpp updated: 1.11 -> 1.12 --- Log message: very early support for analyzing a bitstream. This opens the file, starts reading the stream, and detects whether it is LLVM IR or not. --- Diffs of the changes: (+67 -7) llvm-bcana

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

2007-04-29 Thread Chris Lattner
Changes in directory llvm/tools/llvm-bcanalyzer: llvm-bcanalyzer.cpp updated: 1.12 -> 1.13 --- Log message: Implement support to read an arbitrary bitcode file. Next up, dumping the file symbolically and actually computing statistics. --- Diffs of the changes: (+78 -9) llvm-bcanalyzer.cpp

Re: [llvm-commits] [126685] Add alias support to llvm-gcc

2007-04-29 Thread Anton Korobeynikov
Chris, > Revision: 126685 > Author: clattner > Date: 2007-04-28 21:24:20 -0700 (Sat, 28 Apr 2007) > > Log Message: > --- > Add alias support to llvm-gcc Probably I forget about one small addendum. Attached. -- With best regards, Anton Korobeynikov. Faculty of Mathematics & Mechani

Re: [llvm-commits] [126665] Revert previous patch.

2007-04-29 Thread Bill Wendling
Is this to mean that for t in $TARGETS ; do ln -s ../../../libstdc++.6.dylib \ .$DEST_ROOT/lib/gcc/$t-apple-darwin$DARWIN_VERS/$VERS/libstdc+ +.dylib \ || exit 1 done is the correct patch and that the one brought over from the merge should be ignored? :-) -bw On Apr 27, 2007, a

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

2007-04-29 Thread Anton Korobeynikov
Changes in directory llvm/test/CodeGen/X86: aliases.ll updated: 1.1 -> 1.2 --- Log message: Updated aliases test --- Diffs of the changes: (+4 -2) aliases.ll |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) Index: llvm/test/CodeGen/X86/aliases.ll diff -u llvm/test/CodeGen/

Re: [llvm-commits] CVS: llvm/lib/VMCore/AsmWriter.cpp Globals.cpp Module.cpp Verifier.cpp

2007-04-29 Thread Anton Korobeynikov
Chris, > This can use the new getAliaseeGlobal() method. Not here. We should distinguish, whether we have variable, function ot bitcast here and print them differently. > What does it mean for an alias to be a declaration? I'd be fine with > them always returning true or false. What code call

Re: [llvm-commits] llvm-gcc mirror update delayed again

2007-04-29 Thread Bill Wendling
Have others come across this failure? -bw On Apr 28, 2007, at 7:22 AM, Jeff Cohen wrote: > Once again, the log claims it was updated at 2am PDT, but my nightly > tester failed to pull in any changes at 3am. Revision 318 is now > present at 7am. > > __

[llvm-commits] Compilation Failure

2007-04-29 Thread Bill Wendling
There's a compilation failure: llvm[1]: Compiling MemoryBuffer.cpp for Debug build /Volumes/Gir/devel/llvm/llvm.src/lib/Support/MemoryBuffer.cpp: In static member function 'static llvm::MemoryBuffer* llvm::MemoryBuffer::getFile(const char*, unsigned int, int64_t)': /Volumes/Gir/devel/llvm/llvm

Re: [llvm-commits] Compilation Failure

2007-04-29 Thread Jeff Cohen
Yep, my nightly tester failed with the same error. Look, this is getting ridiculous. Never mind running the regression tests, how about trying to compile before committing? Bill Wendling wrote: > There's a compilation failure: > > llvm[1]: Compiling MemoryBuffer.cpp for Debug build > /Volumes/G

Re: [llvm-commits] llvm-gcc mirror update delayed again

2007-04-29 Thread Jeff Cohen
It happened again last night. According to the log: r319 | bwendlin | 2007-04-29 02:04:05 -0700 (Sun, 29 Apr 2007) | 1 line auto-merge 2007-04-29T02:00:00-0700 ---

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

2007-04-29 Thread Jeff Cohen
Changes in directory llvm/lib/Support: MemoryBuffer.cpp updated: 1.1 -> 1.2 --- Log message: Unbreak build. --- Diffs of the changes: (+2 -1) MemoryBuffer.cpp |3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) Index: llvm/lib/Support/MemoryBuffer.cpp diff -u llvm/lib/Support/Memo

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

2007-04-29 Thread Jeff Cohen
Changes in directory llvm/win32/Bitcode: Bitcode.vcproj updated: 1.2 -> 1.3 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+3 -6) Bitcode.vcproj |9 +++-- 1 files changed, 3 insertions(+), 6 deletions(-) Index: llvm/win32/Bitcode/Bitcode.vcproj diff -u llvm/win32/

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

2007-04-29 Thread Jeff Cohen
Changes in directory llvm/win32/Support: Support.vcproj updated: 1.19 -> 1.20 --- 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

Re: [llvm-commits] llvm-gcc mirror update delayed again

2007-04-29 Thread Reid Spencer
On Sun, 29 Apr 2007 07:11:45 -0700 Jeff Cohen <[EMAIL PROTECTED]> wrote: >It happened again last night. According to the log: > > >r319 | bwendlin | 2007-04-29 02:04:05 -0700 (Sun, 29 Apr 2007) | 1 line > >auto-merge 2007-04-

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

2007-04-29 Thread Jeff Cohen
Changes in directory llvm/include/llvm/System: Path.h updated: 1.53 -> 1.54 --- Log message: Fix MemoryBuffer breakage correctly. --- Diffs of the changes: (+8 -0) Path.h |8 1 files changed, 8 insertions(+) Index: llvm/include/llvm/System/Path.h diff -u llvm/include/llvm/Sys

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

2007-04-29 Thread Jeff Cohen
Changes in directory llvm/lib/Support: MemoryBuffer.cpp updated: 1.2 -> 1.3 --- Log message: Fix MemoryBuffer breakage correctly. --- Diffs of the changes: (+1 -1) MemoryBuffer.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Support/MemoryBuffer.cpp diff -u l

Re: [llvm-commits] llvm-gcc mirror update delayed again

2007-04-29 Thread Jeff Cohen
Reid Spencer wrote: > On Sun, 29 Apr 2007 07:11:45 -0700 > Jeff Cohen <[EMAIL PROTECTED]> wrote: > >> It happened again last night. According to the log: >> >> >> r319 | bwendlin | 2007-04-29 02:04:05 -0700 (Sun, 29 Apr 2

Re: [llvm-commits] CVS: llvm/lib/AsmParser/llvmAsmParser.cpp.cvs llvmAsmParser.h.cvs

2007-04-29 Thread Jeff Cohen
Jeff Cohen wrote: > Changes in directory llvm/lib/AsmParser: > > llvmAsmParser.cpp.cvs updated: 1.95 -> 1.96 > llvmAsmParser.h.cvs updated: 1.73 -> 1.74 > --- > Log message: > > Fix MemoryBuffer breakage correctly. > > --- > Diffs of the changes: (+1404 -1627) > > llvmAsmParser.cpp.cvs | 3002 >

[llvm-commits] Persistent regression failures

2007-04-29 Thread Jeff Cohen
Two tests that broke yesterday are still broke: CFrontend/2007-04-11-InlineAsmStruct.c CFrontend/2007-04-11-InlineAsmUnion.c ___ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

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

2007-04-29 Thread Chris Lattner
Changes in directory llvm/include/llvm/System: Path.h updated: 1.54 -> 1.55 --- Log message: add missing ctor --- Diffs of the changes: (+6 -2) Path.h |8 ++-- 1 files changed, 6 insertions(+), 2 deletions(-) Index: llvm/include/llvm/System/Path.h diff -u llvm/include/llvm/System

Re: [llvm-commits] Compilation Failure

2007-04-29 Thread Chris Lattner
On Apr 29, 2007, at 7:03 AM, Jeff Cohen wrote: > Yep, my nightly tester failed with the same error. > > Look, this is getting ridiculous. Never mind running the regression > tests, how about trying to compile before committing? I'm sorry for the breakage Jeff. However, there is no need for the

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

2007-04-29 Thread Chris Lattner
Changes in directory llvm/include/llvm/System: Path.h updated: 1.55 -> 1.56 --- Log message: Jeff's fix was fine --- Diffs of the changes: (+2 -6) Path.h |8 ++-- 1 files changed, 2 insertions(+), 6 deletions(-) Index: llvm/include/llvm/System/Path.h diff -u llvm/include/llvm/Sys

Re: [llvm-commits] Persistent regression failures

2007-04-29 Thread Chris Lattner
On Apr 29, 2007, at 8:09 AM, Jeff Cohen wrote: > Two tests that broke yesterday are still broke: > > CFrontend/2007-04-11-InlineAsmStruct.c > CFrontend/2007-04-11-InlineAsmUnion.c These both pass for me. Three options: your CFE isn't up-to-date, the test is broken for your target, or the comp

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

2007-04-29 Thread Anton Korobeynikov
Changes in directory llvm/docs: LangRef.html updated: 1.240 -> 1.241 --- Log message: Implement review feedback --- Diffs of the changes: (+2 -2) LangRef.html |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/docs/LangRef.html diff -u llvm/docs/LangRef.html:1.240

[llvm-commits] CVS: llvm/lib/Transforms/IPO/GlobalDCE.cpp

2007-04-29 Thread Anton Korobeynikov
Changes in directory llvm/lib/Transforms/IPO: GlobalDCE.cpp updated: 1.44 -> 1.45 --- Log message: Implement review feedback --- Diffs of the changes: (+1 -1) GlobalDCE.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Transforms/IPO/GlobalDCE.cpp diff -u llvm

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

2007-04-29 Thread Anton Korobeynikov
Changes in directory llvm/lib/VMCore: AsmWriter.cpp updated: 1.277 -> 1.278 Globals.cpp updated: 1.21 -> 1.22 Verifier.cpp updated: 1.208 -> 1.209 --- Log message: Implement review feedback --- Diffs of the changes: (+30 -9) AsmWriter.cpp |3 +-- Globals.cpp | 33 ++

[llvm-commits] CVS: llvm/include/llvm/Function.h GlobalAlias.h

2007-04-29 Thread Anton Korobeynikov
Changes in directory llvm/include/llvm: Function.h updated: 1.83 -> 1.84 GlobalAlias.h updated: 1.2 -> 1.3 --- Log message: Implement review feedback --- Diffs of the changes: (+6 -3) Function.h|4 ++-- GlobalAlias.h |5 - 2 files changed, 6 insertions(+), 3 deletions(-)

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

2007-04-29 Thread Anton Korobeynikov
Changes in directory llvm/lib/CodeGen: AsmPrinter.cpp updated: 1.158 -> 1.159 --- Log message: Implement review feedback --- Diffs of the changes: (+3 -12) AsmPrinter.cpp | 15 +++ 1 files changed, 3 insertions(+), 12 deletions(-) Index: llvm/lib/CodeGen/AsmPrinter.cpp diff

Re: [llvm-commits] CVS: llvm/lib/VMCore/AsmWriter.cpp Globals.cpp Module.cpp Verifier.cpp

2007-04-29 Thread Chris Lattner
On Apr 29, 2007, at 3:38 AM, Anton Korobeynikov wrote: > Chris, > >> This can use the new getAliaseeGlobal() method. > Not here. We should distinguish, whether we have variable, function ot > bitcast here and print them differently. Ok, but the call can be used to dig the global out from under t

Re: [llvm-commits] CVS: llvm/lib/VMCore/AsmWriter.cpp Globals.cpp Module.cpp Verifier.cpp

2007-04-29 Thread Anton Korobeynikov
Hello, Chris. > Ok, but the call can be used to dig the global out from under the > constantexprs etc. Yes. Commited. > I must be missing something: isn't it *always* safe to RAUW uses of > an alias with uses of its aliasee? No, that's me missing some bits :) It's always safe to do RAUW of an

[llvm-commits] CVS: llvm/docs/BytecodeFormat.html LangRef.html

2007-04-29 Thread Anton Korobeynikov
Changes in directory llvm/docs: BytecodeFormat.html updated: 1.71 -> 1.72 LangRef.html updated: 1.241 -> 1.242 --- Log message: Implement protected visibility. This partly implements PR1363: http://llvm.org/PR1363 . Linker should be taught to deal with protected symbols. --- Diffs of the ch

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

2007-04-29 Thread Anton Korobeynikov
Changes in directory llvm/lib/Target: TargetAsmInfo.cpp updated: 1.23 -> 1.24 --- Log message: Implement protected visibility. This partly implements PR1363: http://llvm.org/PR1363 . Linker should be taught to deal with protected symbols. --- Diffs of the changes: (+1 -0) TargetAsmInfo.c

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

2007-04-29 Thread Anton Korobeynikov
Changes in directory llvm/lib/Bytecode/Writer: Writer.cpp updated: 1.178 -> 1.179 --- Log message: Implement protected visibility. This partly implements PR1363: http://llvm.org/PR1363 . Linker should be taught to deal with protected symbols. --- Diffs of the changes: (+3 -2) Writer.cpp

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

2007-04-29 Thread Anton Korobeynikov
Changes in directory llvm/lib/Bytecode/Reader: Reader.cpp updated: 1.256 -> 1.257 --- Log message: Implement protected visibility. This partly implements PR1363: http://llvm.org/PR1363 . Linker should be taught to deal with protected symbols. --- Diffs of the changes: (+2 -0) Reader.cpp

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

2007-04-29 Thread Anton Korobeynikov
Changes in directory llvm/include/llvm: GlobalValue.h updated: 1.40 -> 1.41 --- Log message: Implement protected visibility. This partly implements PR1363: http://llvm.org/PR1363 . Linker should be taught to deal with protected symbols. --- Diffs of the changes: (+6 -2) GlobalValue.h |

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

2007-04-29 Thread Anton Korobeynikov
Changes in directory llvm/lib/AsmParser: Lexer.l updated: 1.106 -> 1.107 Lexer.l.cvs updated: 1.33 -> 1.34 llvmAsmParser.y updated: 1.354 -> 1.355 llvmAsmParser.y.cvs updated: 1.96 -> 1.97 --- Log message: Implement protected visibility. This partly implements PR1363: http://llvm.org/PR1363 .

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

2007-04-29 Thread Anton Korobeynikov
Changes in directory llvm/lib/Target/X86: X86ATTAsmPrinter.cpp updated: 1.103 -> 1.104 X86AsmPrinter.cpp updated: 1.240 -> 1.241 --- Log message: Implement protected visibility. This partly implements PR1363: http://llvm.org/PR1363 . Linker should be taught to deal with protected symbols. -

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

2007-04-29 Thread Anton Korobeynikov
Changes in directory llvm/lib/VMCore: AsmWriter.cpp updated: 1.278 -> 1.279 --- Log message: Implement protected visibility. This partly implements PR1363: http://llvm.org/PR1363 . Linker should be taught to deal with protected symbols. --- Diffs of the changes: (+3 -0) AsmWriter.cpp |

Re: [llvm-commits] Persistent regression failures

2007-04-29 Thread me22
On 29/04/07, Chris Lattner <[EMAIL PROTECTED]> wrote: > On Apr 29, 2007, at 8:09 AM, Jeff Cohen wrote: > > Two tests that broke yesterday are still broke: > > > > CFrontend/2007-04-11-InlineAsmStruct.c > > CFrontend/2007-04-11-InlineAsmUnion.c > > > These both pass for me. Three options: your CFE

Re: [llvm-commits] Persistent regression failures

2007-04-29 Thread Anton Korobeynikov
Chris, > These both pass for me. Three options: your CFE isn't up-to-date, > the test is broken for your target, or the compiler is broken for > your target. These two failed for me also. The resulting llvm IR (for "Struct"): ; ModuleID = '/home/asl/proj/llvm/src/test/CFrontend/2007-04-11-In

[llvm-commits] CVS: nightlytest-serverside/AcceptTestResults.php

2007-04-29 Thread Tanya Lattner
Changes in directory nightlytest-serverside: AcceptTestResults.php added (r1.1) --- Log message: New accept test results script to populate new database. --- Diffs of the changes: (+552 -0) AcceptTestResults.php | 552 ++ 1 files changed, 55

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

2007-04-29 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen/SelectionDAG: SelectionDAGISel.cpp updated: 1.438 -> 1.439 --- Log message: generalize aggregate handling --- Diffs of the changes: (+21 -5) SelectionDAGISel.cpp | 26 +- 1 files changed, 21 insertions(+), 5 deletions(-) Ind

[llvm-commits] CVS: llvm/test/CFrontend/2007-04-11-InlineAsmStruct.c 2007-04-11-InlineAsmUnion.c

2007-04-29 Thread Chris Lattner
Changes in directory llvm/test/CFrontend: 2007-04-11-InlineAsmStruct.c updated: 1.2 -> 1.3 2007-04-11-InlineAsmUnion.c updated: 1.4 -> 1.5 --- Log message: not all targets want to return an i32. What really matters is whether llc accepts the generated code. --- Diffs of the changes: (+2 -2

Re: [llvm-commits] Persistent regression failures

2007-04-29 Thread Chris Lattner
> Running /home/me22/programming/llvm-cvs/test/CFrontend/dg.exp ... > FAIL: /home/me22/programming/llvm-cvs/test/CFrontend/2007-04-11- > InlineAsmStruct.c > Failed with exit(1) at line 1 > while running: /usr/local/bin/llvm-gcc -emit-llvm > /home/me22/programming/llvm-cvs/test/CFrontend/2007-04-11

[llvm-commits] CVS: nightlytest-serverside/NightlyTestAccept.php

2007-04-29 Thread Tanya Lattner
Changes in directory nightlytest-serverside: NightlyTestAccept.php updated: 1.62 -> 1.63 --- Log message: Including new accept script file, moved database connection to a function so its not global. --- Diffs of the changes: (+18 -20) NightlyTestAccept.php | 38 ++---

Re: [llvm-commits] Persistent regression failures

2007-04-29 Thread Anton Korobeynikov
> It was a combination of multiple things, hopefully the tests should > pass now, please let me know if they don't for you. They passed for me now. -- With best regards, Anton Korobeynikov. Faculty of Mathematics & Mechanics, Saint Petersburg State University. ___

[llvm-commits] CVS: llvm/include/llvm/Bitcode/BitstreamReader.h

2007-04-29 Thread Chris Lattner
Changes in directory llvm/include/llvm/Bitcode: BitstreamReader.h updated: 1.6 -> 1.7 --- Log message: add a method --- Diffs of the changes: (+6 -0) BitstreamReader.h |6 ++ 1 files changed, 6 insertions(+) Index: llvm/include/llvm/Bitcode/BitstreamReader.h diff -u llvm/include/

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

2007-04-29 Thread Dale Johannesen
Changes in directory llvm/include/llvm/Target: TargetAsmInfo.h updated: 1.30 -> 1.31 --- Log message: Make ARM-specific version of getInlineAsmLength --- Diffs of the changes: (+1 -1) TargetAsmInfo.h |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/include/llvm/Targe

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

2007-04-29 Thread Dale Johannesen
Changes in directory llvm/lib/Target/ARM: ARMTargetAsmInfo.h updated: 1.2 -> 1.3 ARMTargetAsmInfo.cpp updated: 1.15 -> 1.16 --- Log message: Make ARM-specific version of getInlineAsmLength --- Diffs of the changes: (+53 -0) ARMTargetAsmInfo.cpp | 51 ++

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

2007-04-29 Thread Dale Johannesen
Changes in directory llvm/lib/Target/ARM: ARMInstrInfo.cpp updated: 1.22 -> 1.23 ARMConstantIslandPass.cpp updated: 1.38 -> 1.39 --- Log message: Rewrite of Thumb constant islands handling (exact allowance for padding around islands and jump tables). --- Diffs of the changes: (+226 -87) AR

[llvm-commits] CVS: nightlytest-serverside/NightlyTestAccept.php

2007-04-29 Thread Tanya Lattner
Changes in directory nightlytest-serverside: NightlyTestAccept.php updated: 1.63 -> 1.64 --- Log message: Renaming functions. --- Diffs of the changes: (+18 -17) NightlyTestAccept.php | 35 ++- 1 files changed, 18 insertions(+), 17 deletions(-) Index: ni

[llvm-commits] CVS: llvm/include/llvm/Bitcode/BitstreamReader.h

2007-04-29 Thread Chris Lattner
Changes in directory llvm/include/llvm/Bitcode: BitstreamReader.h updated: 1.7 -> 1.8 --- Log message: compute this value correctly --- Diffs of the changes: (+4 -2) BitstreamReader.h |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) Index: llvm/include/llvm/Bitcode/Bitstre

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

2007-04-29 Thread Chris Lattner
Changes in directory llvm/tools/llvm-bcanalyzer: llvm-bcanalyzer.cpp updated: 1.13 -> 1.14 --- Log message: add some simple per-block statistics --- Diffs of the changes: (+104 -8) llvm-bcanalyzer.cpp | 112 1 files changed, 104 insert

[llvm-commits] CVS: llvm/lib/Bitcode/Reader/BitcodeReader.cpp

2007-04-29 Thread Anton Korobeynikov
Changes in directory llvm/lib/Bitcode/Reader: BitcodeReader.cpp updated: 1.16 -> 1.17 --- Log message: Implement visibility checking during linking. Also implement protected visibility support for bitcode. --- Diffs of the changes: (+1 -0) BitcodeReader.cpp |1 + 1 files changed, 1 in

[llvm-commits] CVS: llvm/lib/Bitcode/Writer/BitcodeWriter.cpp

2007-04-29 Thread Anton Korobeynikov
Changes in directory llvm/lib/Bitcode/Writer: BitcodeWriter.cpp updated: 1.15 -> 1.16 --- Log message: Implement visibility checking during linking. Also implement protected visibility support for bitcode. --- Diffs of the changes: (+3 -2) BitcodeWriter.cpp |5 +++-- 1 files changed,

[llvm-commits] CVS: llvm/lib/Linker/LinkModules.cpp

2007-04-29 Thread Anton Korobeynikov
Changes in directory llvm/lib/Linker: LinkModules.cpp updated: 1.139 -> 1.140 --- Log message: Implement visibility checking during linking. Also implement protected visibility support for bitcode. --- Diffs of the changes: (+14 -1) LinkModules.cpp | 15 ++- 1 files changed,

[llvm-commits] CVS: nightlytest-serverside/NightlyTestAccept.php

2007-04-29 Thread Tanya Lattner
Changes in directory nightlytest-serverside: NightlyTestAccept.php updated: 1.64 -> 1.65 --- Log message: Enable new database. --- Diffs of the changes: (+1 -1) NightlyTestAccept.php |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: nightlytest-serverside/NightlyTestAccept

Re: [llvm-commits] llvm-gcc mirror update delayed again

2007-04-29 Thread Bill Wendling
On Apr 29, 2007, at 7:24 AM, Reid Spencer wrote: > On Sun, 29 Apr 2007 07:11:45 -0700 > Jeff Cohen <[EMAIL PROTECTED]> wrote: >> It happened again last night. According to the log: >> >> - >> --- >> r319 | bwendlin | 2007-04-29

Re: [llvm-commits] CVS: llvm/lib/AsmParser/llvmAsmParser.cpp.cvs llvmAsmParser.h.cvs

2007-04-29 Thread Bill Wendling
On Apr 29, 2007, at 7:47 AM, Jeff Cohen wrote: > Jeff Cohen wrote: >> Changes in directory llvm/lib/AsmParser: >> >> llvmAsmParser.cpp.cvs updated: 1.95 -> 1.96 >> llvmAsmParser.h.cvs updated: 1.73 -> 1.74 >> --- >> Log message: >> >> Fix MemoryBuffer breakage correctly. >> >> --- >> Diffs of the

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

2007-04-29 Thread Chris Lattner
Changes in directory llvm/tools/llvm-bcanalyzer: llvm-bcanalyzer.cpp updated: 1.14 -> 1.15 --- Log message: Implement much expanded dumper support. We now print stuff like: ... With work, the operands can be pretty printed symbolically. --- Diff

[llvm-commits] CVS: llvm/include/llvm/Bitcode/BitstreamReader.h LLVMBitCodes.h

2007-04-29 Thread Chris Lattner
Changes in directory llvm/include/llvm/Bitcode: BitstreamReader.h updated: 1.8 -> 1.9 LLVMBitCodes.h updated: 1.8 -> 1.9 --- Log message: add some helpers --- Diffs of the changes: (+5 -2) BitstreamReader.h |5 - LLVMBitCodes.h|2 +- 2 files changed, 5 insertions(+), 2 dele

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

2007-04-29 Thread Reid Spencer
Changes in directory llvm/tools/llvm-ld: llvm-ld.cpp updated: 1.50 -> 1.51 --- Log message: Augment the verbose output to print out the sub-commands executed. --- Diffs of the changes: (+29 -8) llvm-ld.cpp | 37 + 1 files changed, 29 insertions(+), 8 d

[llvm-commits] CVS: llvm/lib/Linker/LinkItems.cpp

2007-04-29 Thread Reid Spencer
Changes in directory llvm/lib/Linker: LinkItems.cpp updated: 1.12 -> 1.13 --- Log message: Dependent libraries could be native too. --- Diffs of the changes: (+4 -1) LinkItems.cpp |5 - 1 files changed, 4 insertions(+), 1 deletion(-) Index: llvm/lib/Linker/LinkItems.cpp diff -u l

Re: [llvm-commits] CVS: llvm/lib/Target/ARM/ARMTargetAsmInfo.h ARMTargetAsmInfo.cpp

2007-04-29 Thread Lauro Ramos Venancio
+/// ARM-specific version of TargetAsmInfo::getInlineAsmLength. +unsigned ARMTargetAsmInfo::getInlineAsmLength(const char *Str) const { + // Count the number of bytes in the asm. + bool atInsnStart = true; + unsigned Length = 0; + for (; *Str; ++Str) { +if (atInsnStart) { + // Skip

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

2007-04-29 Thread Lauro Ramos Venancio
Changes in directory llvm/lib/Target/ARM: ARMAsmPrinter.cpp updated: 1.68 -> 1.69 ARMTargetAsmInfo.cpp updated: 1.16 -> 1.17 --- Log message: Enable protected visibility on ARM. --- Diffs of the changes: (+16 -4) ARMAsmPrinter.cpp| 19 +++ ARMTargetAsmInfo.cpp |1

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

2007-04-29 Thread Reid Spencer
Changes in directory llvm/include/llvm: Linker.h updated: 1.22 -> 1.23 --- Log message: If an archive is not recognized as an LLVM bytecode archive then declare that it is native so that the linker will pass it on downstream. This avoids a problem where the native link line fails because there

[llvm-commits] CVS: llvm/lib/Linker/LinkArchives.cpp LinkItems.cpp

2007-04-29 Thread Reid Spencer
Changes in directory llvm/lib/Linker: LinkArchives.cpp updated: 1.56 -> 1.57 LinkItems.cpp updated: 1.13 -> 1.14 --- Log message: If an archive is not recognized as an LLVM bytecode archive then declare that it is native so that the linker will pass it on downstream. This avoids a problem where

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

2007-04-29 Thread Dale Johannesen
Changes in directory llvm/lib/Target/ARM: ARMTargetAsmInfo.cpp updated: 1.17 -> 1.18 --- Log message: remove unused variable --- Diffs of the changes: (+0 -1) ARMTargetAsmInfo.cpp |1 - 1 files changed, 1 deletion(-) Index: llvm/lib/Target/ARM/ARMTargetAsmInfo.cpp diff -u llvm/lib/T

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

2007-04-29 Thread Dale Johannesen
Changes in directory llvm/lib/Target/ARM: README.txt updated: 1.23 -> 1.24 --- Log message: Remove item: thumb padding in constant islands --- Diffs of the changes: (+2 -6) README.txt |8 ++-- 1 files changed, 2 insertions(+), 6 deletions(-) Index: llvm/lib/Target/ARM/README.txt

Re: [llvm-commits] Persistent regression failures

2007-04-29 Thread me22
On 29/04/07, Anton Korobeynikov <[EMAIL PROTECTED]> wrote: > > It was a combination of multiple things, hopefully the tests should > > pass now, please let me know if they don't for you. > > > They passed for me now. > Passed here as well. ~ Scott ___ ll

[llvm-commits] CVS: llvm/test/CodeGen/PowerPC/2006-11-10-DAGCombineMiscompile.ll ispositive.ll vector-identity-shuffle.ll

2007-04-29 Thread Reid Spencer
Changes in directory llvm/test/CodeGen/PowerPC: 2006-11-10-DAGCombineMiscompile.ll added (r1.1) ispositive.ll added (r1.1) vector-identity-shuffle.ll added (r1.1) --- Log message: For PR1370: http://llvm.org/PR1370 : Rearrange some tests so that if PowerPC is not being built we don't try to run

[llvm-commits] CVS: llvm/test/CodeGen/Generic/vector-identity-shuffle.ll 2006-11-10-DAGCombineMiscompile.ll ispositive.ll

2007-04-29 Thread Reid Spencer
Changes in directory llvm/test/CodeGen/Generic: vector-identity-shuffle.ll updated: 1.5 -> 1.6 2006-11-10-DAGCombineMiscompile.ll (r1.2) removed ispositive.ll (r1.5) removed --- Log message: For PR1370: http://llvm.org/PR1370 : Rearrange some tests so that if PowerPC is not being built we don't

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

2007-04-29 Thread Reid Spencer
Changes in directory llvm/test/CodeGen/ARM: ispositive.ll added (r1.1) --- Log message: For PR1370: http://llvm.org/PR1370 : Rearrange some tests so that if PowerPC is not being built we don't try to run PowerPC specific tests. --- Diffs of the changes: (+10 -0) ispositive.ll | 10 ++

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

2007-04-29 Thread Reid Spencer
Changes in directory llvm/test/CodeGen/X86: ispositive.ll added (r1.1) --- Log message: For PR1370: http://llvm.org/PR1370 : Rearrange some tests so that if PowerPC is not being built we don't try to run PowerPC specific tests. --- Diffs of the changes: (+9 -0) ispositive.ll |9 +++

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

2007-04-29 Thread Chris Lattner
Reid, why are you duplicating these tests? -Chris On Apr 29, 2007, at 10:12 PM, Reid Spencer wrote: > > > Changes in directory llvm/test/CodeGen/X86: > > ispositive.ll added (r1.1) > --- > Log message: > > For PR1370: http://llvm.org/PR1370 : > Rearrange some tests so that if PowerPC is not bei