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

2006-12-17 Thread Bill Wendling
Changes in directory llvm/lib/Bytecode/Writer: Writer.cpp updated: 1.138 - 1.139 --- Log message: This snuck in. Reverted. --- Diffs of the changes: (+0 -2) Writer.cpp |2 -- 1 files changed, 2 deletions(-) Index: llvm/lib/Bytecode/Writer/Writer.cpp diff -u

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

2006-12-17 Thread Bill Wendling
Changes in directory llvm/lib/CodeGen/SelectionDAG: ScheduleDAGSimple.cpp updated: 1.22 - 1.23 --- Log message: Fixed so that it dereferences the ostream pointer. --- Diffs of the changes: (+1 -1) ScheduleDAGSimple.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index:

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

2006-12-17 Thread Bill Wendling
Changes in directory llvm/include/llvm/CodeGen: LinkAllCodegenComponents.h updated: 1.4 - 1.5 --- Log message: Accidental submission. --- Diffs of the changes: (+0 -1) LinkAllCodegenComponents.h |1 - 1 files changed, 1 deletion(-) Index:

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-17 Thread Bill Wendling
Hi Jeff (and everyone), This was a mistake. I reverted this patch. I'm sorry that it snuck in there :-( -bw On Dec 16, 2006, at 9:58 PM, Jeff Cohen wrote: This also breaks VC++ as there is no declaration for llvm::createGraphColoringRegisterAllocator(). As in, there isn't one

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

2006-12-17 Thread Bill Wendling
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 On Dec 16, 2006, at 9:55 PM, Jeff Cohen wrote: This breaks the VC++ build with a binary '' : no operator found which takes a left-hand operand of type

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

2006-12-17 Thread Bill Wendling
Changes in directory llvm/docs: CodingStandards.html updated: 1.32 - 1.33 --- Log message: Added example of how to code print() methods so that they will disappear from the code if cnull is passed into them. --- Diffs of the changes: (+19 -6) CodingStandards.html | 25

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

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

2006-12-17 Thread Reid Spencer
Changes in directory llvm/lib/Target/CBackend: Writer.cpp updated: 1.298 - 1.299 --- Log message: Fix PR1058: http://llvm.org/PR1058 : Generate the BITCAST_TEMPORARY regardless of the uses or inlinability of the instruction. This temporary is needed to perform the instruction, not provide

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

2006-12-17 Thread Reid Spencer
Changes in directory llvm/lib/Target/CBackend: Writer.cpp updated: 1.299 - 1.300 --- Log message: Use a predicate function to identify bitcast of fp and integer instead of repeating the logic in two different parts of the code. --- Diffs of the changes: (+11 -11) Writer.cpp | 22

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

2006-12-17 Thread Chris Lattner
Changes in directory llvm/lib/ExecutionEngine/JIT: JIT.cpp updated: 1.83 - 1.84 --- Log message: Fix PR1057: http://llvm.org/PR1057 (compilation on macos 10.3), patch by Scott Michel! --- Diffs of the changes: (+8 -8) JIT.cpp | 16 1 files changed, 8 insertions(+), 8

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

2006-12-17 Thread Reid Spencer
Changes in directory llvm/lib/VMCore: ConstantFolding.cpp updated: 1.114 - 1.115 --- Log message: Remove the last use of getUnsignedVersion and getSignedVersion from VMCore. ConstantInt doesn't care about the sign of the type it represents. It only cares about the bitwidth so there is no need

[llvm-commits] CVS: llvm/test/Feature/newcasts.ll

2006-12-17 Thread Reid Spencer
Changes in directory llvm/test/Feature: newcasts.ll updated: 1.1 - 1.2 --- Log message: Add a couple little tests for SExt/ZExt of constants of a sign that doesn't match. --- Diffs of the changes: (+7 -0) newcasts.ll |7 +++ 1 files changed, 7 insertions(+) Index:

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

2006-12-17 Thread Rafael Espindola
Changes in directory llvm/lib/CodeGen: AsmPrinter.cpp updated: 1.125 - 1.126 --- Log message: move ExtWeakSymbols to AsmPrinter --- Diffs of the changes: (+12 -0) AsmPrinter.cpp | 12 1 files changed, 12 insertions(+) Index: llvm/lib/CodeGen/AsmPrinter.cpp diff -u

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

2006-12-17 Thread Rafael Espindola
Changes in directory llvm/lib/Target/PowerPC: PPCAsmPrinter.cpp updated: 1.221 - 1.222 --- Log message: move ExtWeakSymbols to AsmPrinter --- Diffs of the changes: (+3 -15) PPCAsmPrinter.cpp | 18 +++--- 1 files changed, 3 insertions(+), 15 deletions(-) Index:

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

2006-12-17 Thread Rafael Espindola
Changes in directory llvm/include/llvm/CodeGen: AsmPrinter.h updated: 1.57 - 1.58 --- Log message: move ExtWeakSymbols to AsmPrinter --- Diffs of the changes: (+5 -0) AsmPrinter.h |5 + 1 files changed, 5 insertions(+) Index: llvm/include/llvm/CodeGen/AsmPrinter.h diff -u

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

2006-12-17 Thread Rafael Espindola
Changes in directory llvm/lib/Target/X86: X86ATTAsmPrinter.cpp updated: 1.78 - 1.79 X86AsmPrinter.cpp updated: 1.221 - 1.222 X86AsmPrinter.h updated: 1.38 - 1.39 --- Log message: move ExtWeakSymbols to AsmPrinter --- Diffs of the changes: (+2 -14) X86ATTAsmPrinter.cpp |2 +-

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

2006-12-17 Thread Rafael Espindola
Changes in directory llvm/lib/Target/ARM: ARMAsmPrinter.cpp updated: 1.39 - 1.40 --- Log message: move ExtWeakSymbols to AsmPrinter --- Diffs of the changes: (+1 -10) ARMAsmPrinter.cpp | 11 +-- 1 files changed, 1 insertion(+), 10 deletions(-) Index:

[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

2006-12-17 Thread Reid Spencer
Changes in directory llvm/include/llvm/Config: config.h.in updated: 1.72 - 1.73 --- Log message: Determine if the -enable-pic option was given. --- Diffs of the changes: (+3 -0) config.h.in |3 +++ 1 files changed, 3 insertions(+) Index: llvm/include/llvm/Config/config.h.in diff -u

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

2006-12-17 Thread Reid Spencer
Changes in directory llvm/lib/VMCore: ConstantFolding.cpp updated: 1.115 - 1.116 --- Log message: Revert last patch. ConstantInt isn't quite ready for signlessness. --- Diffs of the changes: (+4 -2) ConstantFolding.cpp |6 -- 1 files changed, 4 insertions(+), 2 deletions(-)