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

2006-08-15 Thread Reid Spencer
Changes in directory llvm/docs: GetElementPtr.html updated: 1.11 -> 1.12 --- Log message: Fix a thinko noticed by Chandler Carruth. --- Diffs of the changes: (+4 -3) GetElementPtr.html |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) Index: llvm/docs/GetElementPtr.html di

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

2006-08-15 Thread Chris Lattner
Changes in directory llvm/include/llvm/ExecutionEngine: ExecutionEngine.h updated: 1.39 -> 1.40 --- Log message: add a way to have multiple modules in a JIT :) --- Diffs of the changes: (+7 -1) ExecutionEngine.h |8 +++- 1 files changed, 7 insertions(+), 1 deletion(-) Index: llvm

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

2006-08-15 Thread Chris Lattner
Changes in directory llvm/lib/Target/X86: README.txt updated: 1.123 -> 1.124 --- Log message: add a note --- Diffs of the changes: (+13 -0) README.txt | 13 + 1 files changed, 13 insertions(+) Index: llvm/lib/Target/X86/README.txt diff -u llvm/lib/Target/X86/README.txt:1.12

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

2006-08-15 Thread Chris Lattner
Changes in directory llvm/lib/ExecutionEngine/JIT: JIT.cpp updated: 1.72 -> 1.73 JITEmitter.cpp updated: 1.110 -> 1.111 --- Log message: initial changes to support JIT'ing from multiple module providers, implicitly linking the program on the fly. --- Diffs of the changes: (+13 -3) JIT.cpp

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

2006-08-15 Thread Chris Lattner
Changes in directory llvm/lib/ExecutionEngine: ExecutionEngine.cpp updated: 1.83 -> 1.84 --- Log message: initial changes to support JIT'ing from multiple module providers, implicitly linking the program on the fly. --- Diffs of the changes: (+150 -56) ExecutionEngine.cpp | 206 ++

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

2006-08-15 Thread Chris Lattner
Changes in directory llvm/lib/ExecutionEngine/Interpreter: ExternalFunctions.cpp updated: 1.87 -> 1.88 --- Log message: initial changes to support JIT'ing from multiple module providers, implicitly linking the program on the fly. --- Diffs of the changes: (+1 -1) ExternalFunctions.cpp |

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

2006-08-15 Thread Chris Lattner
Changes in directory llvm/include/llvm/ExecutionEngine: ExecutionEngine.h updated: 1.38 -> 1.39 --- Log message: initial changes to support JIT'ing from multiple module providers, implicitly linking the program on the fly. --- Diffs of the changes: (+11 -6) ExecutionEngine.h | 17 +++

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

2006-08-15 Thread Chris Lattner
Changes in directory llvm/include/llvm/ADT: SmallVector.h updated: 1.12 -> 1.13 --- Log message: Bugfixes for smallvector when the element size is small and N is small. --- Diffs of the changes: (+17 -4) SmallVector.h | 21 + 1 files changed, 17 insertions(+), 4 delet

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

2006-08-15 Thread Reid Spencer
Changes in directory llvm/docs: HowToReleaseLLVM.html updated: 1.9 -> 1.10 --- Log message: Add a section on how to build an RPM package as an optional release activity. --- Diffs of the changes: (+24 -8) HowToReleaseLLVM.html | 32 1 files changed, 24 i

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

2006-08-15 Thread Reid Spencer
Changes in directory llvm/autoconf: configure.ac updated: 1.243 -> 1.244 --- Log message: Add llvm.spec to the list of files to be configured. Remove the search for etags. Nothing in LLVM uses it any more. --- Diffs of the changes: (+3 -1) configure.ac |4 +++- 1 files changed, 3 inser

[llvm-commits] CVS: llvm/llvm.spec.in llvm.spec

2006-08-15 Thread Reid Spencer
Changes in directory llvm: llvm.spec.in updated: 1.5 -> 1.6 llvm.spec (r1.5) removed --- Log message: Transform the LLVM RPM spec file to be a configured file. This allows us to automatically pick up the configured version number and other details. Also, update the contents of this script to al

[llvm-commits] CVS: llvm/configure

2006-08-15 Thread Reid Spencer
Changes in directory llvm: configure updated: 1.246 -> 1.247 --- Log message: Add llvm.spec to the list of files to be configured. Remove the search for etags. Nothing in LLVM uses it any more. --- Diffs of the changes: (+4 -0) configure |4 1 files changed, 4 insertions(+) Inde

[llvm-commits] CVS: llvm/Makefile

2006-08-15 Thread Reid Spencer
Changes in directory llvm: Makefile updated: 1.63 -> 1.64 --- Log message: Add .PHONY targets for building source and binary RPM packages. You can now just "make rpm" or "make srpm" and it will build them. --- Diffs of the changes: (+7 -0) Makefile |7 +++ 1 files changed, 7 inser

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

2006-08-15 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCISelDAGToDAG.cpp updated: 1.202 -> 1.203 --- Log message: Fix PowerPC/2006-08-15-SelectionCrash.ll and simplify selection code. --- Diffs of the changes: (+63 -93) PPCISelDAGToDAG.cpp | 156 +-

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

2006-08-15 Thread Chris Lattner
Changes in directory llvm/utils/TableGen: DAGISelEmitter.cpp updated: 1.243 -> 1.244 --- Log message: The generated runloop shouldn't require Select to update 'Result'. In fact we'd like to remove result entirely. --- Diffs of the changes: (+6 -3) DAGISelEmitter.cpp |9 ++--- 1 fi

[llvm-commits] CVS: llvm/test/Regression/CodeGen/PowerPC/2006-08-15-SelectionCrash.ll

2006-08-15 Thread Chris Lattner
Changes in directory llvm/test/Regression/CodeGen/PowerPC: 2006-08-15-SelectionCrash.ll added (r1.1) --- Log message: New testcase --- Diffs of the changes: (+38 -0) 2006-08-15-SelectionCrash.ll | 38 ++ 1 files changed, 38 insertions(+) Index: llvm/

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

2006-08-15 Thread Chris Lattner
Changes in directory llvm/utils/TableGen: DAGISelEmitter.cpp updated: 1.242 -> 1.243 --- Log message: allow Select to return the node being selected if RAU isn't needed. --- Diffs of the changes: (+1 -1) DAGISelEmitter.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAG.h SelectionDAGCSEMap.h SelectionDAGNodes.h

2006-08-15 Thread Chris Lattner
Changes in directory llvm/include/llvm/CodeGen: SelectionDAG.h updated: 1.122 -> 1.123 SelectionDAGCSEMap.h updated: 1.6 -> 1.7 SelectionDAGNodes.h updated: 1.141 -> 1.142 --- Log message: Start using SDVTList more consistently --- Diffs of the changes: (+25 -18) SelectionDAG.h |

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

2006-08-15 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen/SelectionDAG: SelectionDAG.cpp updated: 1.330 -> 1.331 SelectionDAGCSEMap.cpp updated: 1.7 -> 1.8 --- Log message: Start using SDVTList more consistently --- Diffs of the changes: (+78 -72) SelectionDAG.cpp | 132

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

2006-08-15 Thread Patrick Jenkins
Changes in directory nightlytest-serverside: NightlyTestAccept.cgi updated: 1.46 -> 1.47 --- Log message: We now only consider previous tests with a buildstatus that is "OK". --- Diffs of the changes: (+3 -2) NightlyTestAccept.cgi |5 +++-- 1 files changed, 3 insertions(+), 2 deletions

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

2006-08-15 Thread Chris Lattner
Changes in directory llvm/include/llvm/CodeGen: SelectionDAG.h updated: 1.121 -> 1.122 --- Log message: add a new SDVTList type and new SelectionDAG::getVTList methods to streamline the creation of canonical VTLists. --- Diffs of the changes: (+37 -9) SelectionDAG.h | 46

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

2006-08-15 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen/SelectionDAG: SelectionDAG.cpp updated: 1.329 -> 1.330 --- Log message: add a new SDVTList type and new SelectionDAG::getVTList methods to streamline the creation of canonical VTLists. --- Diffs of the changes: (+79 -68) SelectionDAG.cpp | 147 +++

[llvm-commits] CVS: llvm/docs/CommandGuide/bugpoint.pod

2006-08-15 Thread Patrick Jenkins
Changes in directory llvm/docs/CommandGuide: bugpoint.pod updated: 1.7 -> 1.8 --- Log message: Fixed the awkward description of the -find-bugs option for bugpoint. --- Diffs of the changes: (+1 -1) bugpoint.pod |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/docs/Co

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

2006-08-15 Thread Patrick Jenkins
Changes in directory llvm/docs: Bugpoint.html updated: 1.7 -> 1.8 --- Log message: Fixed the awkward description of -find-bugs in the "Advice for using bugpoint" section. --- Diffs of the changes: (+2 -2) Bugpoint.html |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index:

[llvm-commits] CVS: llvm/docs/CommandGuide/bugpoint.pod

2006-08-15 Thread Patrick Jenkins
Changes in directory llvm/docs/CommandGuide: bugpoint.pod updated: 1.6 -> 1.7 --- Log message: Added option description for -find-bugs. --- Diffs of the changes: (+5 -0) bugpoint.pod |5 + 1 files changed, 5 insertions(+) Index: llvm/docs/CommandGuide/bugpoint.pod diff -u llvm/do

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

2006-08-15 Thread Patrick Jenkins
Changes in directory llvm/docs: Bugpoint.html updated: 1.6 -> 1.7 --- Log message: This commit mentions -find-bugs under the advice for using bugpoints section of the bugpoint design and usage document. --- Diffs of the changes: (+7 -1) Bugpoint.html |8 +++- 1 files changed, 7 in

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

2006-08-15 Thread Patrick Jenkins
Changes in directory llvm/tools/bugpoint: FindBugs.cpp added (r1.1) --- Log message: Adding FindBugs.cpp so the -find-bugs option will work. --- Diffs of the changes: (+119 -0) FindBugs.cpp | 119 +++ 1 files changed, 119 insertions(

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

2006-08-15 Thread Patrick Jenkins
Changes in directory llvm/tools/bugpoint: BugDriver.cpp updated: 1.46 -> 1.47 BugDriver.h updated: 1.43 -> 1.44 CrashDebugger.cpp updated: 1.48 -> 1.49 ExecutionDriver.cpp updated: 1.62 -> 1.63 bugpoint.cpp updated: 1.31 -> 1.32 --- Log message: This commit adds a new feature called find-bugs.

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

2006-08-15 Thread Jim Laskey
Changes in directory llvm/docs: GetElementPtr.html updated: 1.10 -> 1.11 --- Log message: Haste-o discovered after. --- Diffs of the changes: (+2 -2) GetElementPtr.html |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/docs/GetElementPtr.html diff -u llvm/docs/Get

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

2006-08-15 Thread Jim Laskey
Changes in directory llvm/docs: GetElementPtr.html updated: 1.9 -> 1.10 --- Log message: Hypos pointed out by Jakob Praher. --- Diffs of the changes: (+6 -6) GetElementPtr.html | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) Index: llvm/docs/GetElementPtr.html diff

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

2006-08-15 Thread Jim Laskey
Changes in directory llvm/docs: GetElementPtr.html updated: 1.8 -> 1.9 --- Log message: Typo. --- Diffs of the changes: (+2 -2) GetElementPtr.html |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/docs/GetElementPtr.html diff -u llvm/docs/GetElementPtr.html:1.8 ll