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

2006-07-28 Thread Evan Cheng
Changes in directory llvm/lib/Target/X86: X86ISelDAGToDAG.cpp updated: 1.83 - 1.84 --- Log message: Some clean up. --- Diffs of the changes: (+8 -6) X86ISelDAGToDAG.cpp | 14 -- 1 files changed, 8 insertions(+), 6 deletions(-) Index: llvm/lib/Target/X86/X86ISelDAGToDAG.cpp

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

2006-07-28 Thread Reid Spencer
On Fri, 2006-07-28 at 01:05 -0500, Evan Cheng wrote: +void DetermineReachibility(SDNode *f, SDNode *t); Hate to be pedantic about this, but its Reachability (a between h and b) Reid. ___ llvm-commits mailing list llvm-commits@cs.uiuc.edu

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

2006-07-28 Thread Evan Cheng
Changes in directory llvm/lib/Target/X86: X86ISelDAGToDAG.cpp updated: 1.84 - 1.85 --- Log message: Can't spell. --- Diffs of the changes: (+15 -15) X86ISelDAGToDAG.cpp | 30 +++--- 1 files changed, 15 insertions(+), 15 deletions(-) Index:

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

2006-07-28 Thread Patrick Jenkins
Changes in directory llvm/tools/bugpoint: ExtractFunction.cpp updated: 1.49 - 1.50 --- Log message: Updating the comments above SplitFunctionsOutOfModule in ExtractFunction.cpp to reflect the changes made to that function. Specifically I am removing the FIXME comment because the issue has

[llvm-commits] CVS: llvm/runtime/GCCLibraries/libc/COPYING.LIB LICENSES LICENSE.TXT qsort.c

2006-07-28 Thread John Criswell
Changes in directory llvm/runtime/GCCLibraries/libc: COPYING.LIB added (r1.1) LICENSES added (r1.1) LICENSE.TXT updated: 1.2 - 1.3 qsort.c updated: 1.2 - 1.3 --- Log message: Added in the LGPL text and copyright information. This needs to be included in the distribution. Also added the glibc

Re: [llvm-commits] CVS: llvm/runtime/GCCLibraries/libc/COPYING.LIB LICENSES LICENSE.TXT qsort.c

2006-07-28 Thread Chris Lattner
Please revert this part of the patch John. -Chris On Jul 28, 2006, at 11:16 AM, John Criswell wrote: Index: llvm/runtime/GCCLibraries/libc/qsort.c diff -u llvm/runtime/GCCLibraries/libc/qsort.c:1.2 llvm/runtime/ GCCLibraries/libc/qsort.c:1.3 --- llvm/runtime/GCCLibraries/libc/qsort.c:1.2 Thu

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/Target/CBackend: Writer.cpp updated: 1.266 - 1.267 --- Log message: Make functions with an asm name propagate that asm name into the cbe.c file. This fixes link errors on programs with these on targets with prefixes. --- Diffs of the changes: (+6 -0)

[llvm-commits] CVS: llvm/lib/ExecutionEngine/JIT/Intercept.cpp

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/ExecutionEngine/JIT: Intercept.cpp updated: 1.27 - 1.28 --- Log message: Fix handling of asm specifiers for external globals. This unbreaks many programs on leopard in the jit. --- Diffs of the changes: (+12 -1) Intercept.cpp | 13 - 1 files

[llvm-commits] CVS: llvm/examples/ModuleMaker/Makefile

2006-07-28 Thread Chris Lattner
Changes in directory llvm/examples/ModuleMaker: Makefile updated: 1.9 - 1.10 --- Log message: WriteBytecodeToFile throws, so this needs EH info. --- Diffs of the changes: (+1 -0) Makefile |1 + 1 files changed, 1 insertion(+) Index: llvm/examples/ModuleMaker/Makefile diff -u

[llvm-commits] CVS: llvm/lib/Bytecode/Archive/Makefile

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/Bytecode/Archive: Makefile updated: 1.4 - 1.5 --- Log message: Exceptions are thrown by and through this library. --- Diffs of the changes: (+1 -0) Makefile |1 + 1 files changed, 1 insertion(+) Index: llvm/lib/Bytecode/Archive/Makefile diff -u

[llvm-commits] CVS: llvm/lib/Support/Makefile

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/Support: Makefile updated: 1.10 - 1.11 --- Log message: libsupport still throws. --- Diffs of the changes: (+1 -0) Makefile |1 + 1 files changed, 1 insertion(+) Index: llvm/lib/Support/Makefile diff -u llvm/lib/Support/Makefile:1.10

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/System/Unix: Path.inc updated: 1.45 - 1.46 --- Log message: Change Path::getStatusInfo to return a boolean and error string on an error instead of throwing an exception. This reduces the amount of code that is exposed to exceptions (e.g. FileUtilities), though it

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/include/llvm/Bytecode: Archive.h updated: 1.16 - 1.17 --- Log message: Change Path::getStatusInfo to return a boolean and error string on an error instead of throwing an exception. This reduces the amount of code that is exposed to exceptions (e.g. FileUtilities),

[llvm-commits] CVS: llvm/lib/Debugger/ProgramInfo.cpp

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/Debugger: ProgramInfo.cpp updated: 1.16 - 1.17 --- Log message: Change Path::getStatusInfo to return a boolean and error string on an error instead of throwing an exception. This reduces the amount of code that is exposed to exceptions (e.g. FileUtilities),

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/Support: FileUtilities.cpp updated: 1.47 - 1.48 --- Log message: Change Path::getStatusInfo to return a boolean and error string on an error instead of throwing an exception. This reduces the amount of code that is exposed to exceptions (e.g. FileUtilities),

[llvm-commits] CVS: llvm/tools/llvm-db/Commands.cpp

2006-07-28 Thread Chris Lattner
Changes in directory llvm/tools/llvm-db: Commands.cpp updated: 1.9 - 1.10 --- Log message: Change Path::getStatusInfo to return a boolean and error string on an error instead of throwing an exception. This reduces the amount of code that is exposed to exceptions (e.g. FileUtilities), though

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/tools/llvm-ar: llvm-ar.cpp updated: 1.32 - 1.33 --- Log message: Change Path::getStatusInfo to return a boolean and error string on an error instead of throwing an exception. This reduces the amount of code that is exposed to exceptions (e.g. FileUtilities), though

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/include/llvm/System: Path.h updated: 1.31 - 1.32 --- Log message: Change Path::getStatusInfo to return a boolean and error string on an error instead of throwing an exception. This reduces the amount of code that is exposed to exceptions (e.g. FileUtilities), though

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/Bytecode/Archive: Archive.cpp updated: 1.11 - 1.12 ArchiveWriter.cpp updated: 1.23 - 1.24 --- Log message: Change Path::getStatusInfo to return a boolean and error string on an error instead of throwing an exception. This reduces the amount of code that is

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/Bytecode/Writer: Writer.cpp updated: 1.122 - 1.123 --- Log message: formatting cleanups --- Diffs of the changes: (+11 -12) Writer.cpp | 23 +++ 1 files changed, 11 insertions(+), 12 deletions(-) Index:

[llvm-commits] CVS: llvm/examples/ModuleMaker/Makefile ModuleMaker.cpp

2006-07-28 Thread Chris Lattner
Changes in directory llvm/examples/ModuleMaker: Makefile updated: 1.10 - 1.11 ModuleMaker.cpp updated: 1.7 - 1.8 --- Log message: WriteBytecodeToFile actually can't throw. --- Diffs of the changes: (+1 -7) Makefile|1 - ModuleMaker.cpp |7 +-- 2 files changed, 1

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/include/llvm/Bytecode: Writer.h updated: 1.10 - 1.11 --- Log message: Update comments. --- Diffs of the changes: (+3 -13) Writer.h | 16 +++- 1 files changed, 3 insertions(+), 13 deletions(-) Index: llvm/include/llvm/Bytecode/Writer.h diff -u

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/Support: GraphWriter.cpp updated: 1.1 - 1.2 --- Log message: Finegrainify namespacification, minor cleanups --- Diffs of the changes: (+2 -8) GraphWriter.cpp | 10 ++ 1 files changed, 2 insertions(+), 8 deletions(-) Index:

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/Bytecode/Archive: ArchiveWriter.cpp updated: 1.24 - 1.25 --- Log message: Modify Path::eraseFromDisk to not throw an exception. --- Diffs of the changes: (+5 -6) ArchiveWriter.cpp | 11 +-- 1 files changed, 5 insertions(+), 6 deletions(-) Index:

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/System/Unix: Path.inc updated: 1.46 - 1.47 --- Log message: Modify Path::eraseFromDisk to not throw an exception. --- Diffs of the changes: (+29 -24) Path.inc | 53 + 1 files changed, 29 insertions(+), 24

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/include/llvm/System: Path.h updated: 1.32 - 1.33 --- Log message: Modify Path::eraseFromDisk to not throw an exception. --- Diffs of the changes: (+4 -6) Path.h | 10 -- 1 files changed, 4 insertions(+), 6 deletions(-) Index:

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.46 - 1.47 --- Log message: Update win32 for Path::getStatusInfo --- Diffs of the changes: (+6 -4) Path.inc | 10 ++ 1 files changed, 6 insertions(+), 4 deletions(-) Index: llvm/lib/System/Win32/Path.inc diff -u

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/System/Win32: Path.inc updated: 1.47 - 1.48 --- Log message: Modify setStatusInfoOnDisk to not throw an exception. --- Diffs of the changes: (+8 -8) Path.inc | 16 1 files changed, 8 insertions(+), 8 deletions(-) Index:

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/System/Unix: Path.inc updated: 1.47 - 1.48 --- Log message: Modify setStatusInfoOnDisk to not throw an exception. --- Diffs of the changes: (+4 -4) Path.inc |8 1 files changed, 4 insertions(+), 4 deletions(-) Index:

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/include/llvm/System: Path.h updated: 1.33 - 1.34 --- Log message: Modify setStatusInfoOnDisk to not throw an exception. --- Diffs of the changes: (+3 -2) Path.h |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) Index:

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

2006-07-28 Thread Reid Spencer
Changes in directory llvm/autoconf: configure.ac updated: 1.241 - 1.242 --- Log message: Fix the --with-extra-options to use the correct variable. --- Diffs of the changes: (+3 -3) configure.ac |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) Index:

[llvm-commits] CVS: llvm/configure

2006-07-28 Thread Reid Spencer
Changes in directory llvm: configure updated: 1.243 - 1.244 --- Log message: Fix the --with-extra-options to use the correct variable. --- Diffs of the changes: (+3 -3) configure |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) Index: llvm/configure diff -u

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

2006-07-28 Thread Evan Cheng
Changes in directory llvm/utils/TableGen: DAGISelEmitter.cpp updated: 1.231 - 1.232 --- Log message: Split each select function for a particular opcode into multiple ones. One per possible ValueType of the node. e.g. Select_add is split into Select_add_i8, Select_add_i16, etc. For opcodes

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/Linker: Linker.cpp updated: 1.10 - 1.11 --- Log message: Remove a redundant syscall. --- Diffs of the changes: (+20 -24) Linker.cpp | 44 1 files changed, 20 insertions(+), 24 deletions(-) Index:

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

2006-07-28 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: NightlyTestAccept.cgi updated: 1.36 - 1.37 --- Log message: Fixed errors were .o file sizes were not being entered into the databaes --- Diffs of the changes: (+1 -1) NightlyTestAccept.cgi |2 +- 1 files changed, 1 insertion(+), 1

[llvm-commits] CVS: llvm/test/Regression/CodeGen/X86/2006-07-28-AsmPrint-Long-As-Pointer.ll

2006-07-28 Thread Chris Lattner
Changes in directory llvm/test/Regression/CodeGen/X86: 2006-07-28-AsmPrint-Long-As-Pointer.ll added (r1.1) --- Log message: New testcase for PR853: http://llvm.org/PR853 --- Diffs of the changes: (+5 -0) 2006-07-28-AsmPrint-Long-As-Pointer.ll |5 + 1 files changed, 5

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

2006-07-28 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen: AsmPrinter.cpp updated: 1.87 - 1.88 --- Log message: Instead of blindly looking past constantexpr casts, actually constant fold them. This correctly truncates constants that are too large for the destination slot and makes the code easier to understand.

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

2006-07-28 Thread Andrew Lenharth
Changes in directory llvm/utils: NewNightlyTest.pl updated: 1.35 - 1.36 --- Log message: fix externals --- Diffs of the changes: (+2 -2) NewNightlyTest.pl |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/utils/NewNightlyTest.pl diff -u