[llvm-commits] Fix objc front-end building with bison 1.28

2007-01-13 Thread Chris Lattner
The recent merge of new bits into the objc front-end broke building with old versions of bison, for example the one included with Mac OS 10.4. This fixes it: Index: c-parse.in === --- c-parse.in (revision 122351) +++ c-parse.in

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

2007-01-13 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Scalar: InstructionCombining.cpp updated: 1.593 -> 1.594 --- Log message: Fix Transforms/InstCombine/2007-01-13-ExtCompareMiscompile.ll, which is part of PR1107: http://llvm.org/PR1107 --- Diffs of the changes: (+13 -3) InstructionCombining.cpp |

[llvm-commits] CVS: llvm/test/Regression/Transforms/InstCombine/2007-01-13-ExtCompareMiscompile.ll

2007-01-13 Thread Chris Lattner
Changes in directory llvm/test/Regression/Transforms/InstCombine: 2007-01-13-ExtCompareMiscompile.ll added (r1.1) --- Log message: testcase reduced from pr1107: http://llvm.org/PR1107 --- Diffs of the changes: (+9 -0) 2007-01-13-ExtCompareMiscompile.ll |9 + 1 files changed, 9

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

2007-01-13 Thread Chris Lattner
Changes in directory llvm/lib/Target/X86: X86IntelAsmPrinter.cpp updated: 1.67 -> 1.68 X86ATTAsmPrinter.cpp updated: 1.84 -> 1.85 --- Log message: remove dead code, frameindices must be resolve before the asmprinter runs. --- Diffs of the changes: (+0 -16) X86ATTAsmPrinter.cpp |8 ---

[llvm-commits] CVS: llvm/test/Regression/CodeGen/X86/2007-01-13-StackPtrIndex.ll

2007-01-13 Thread Chris Lattner
Changes in directory llvm/test/Regression/CodeGen/X86: 2007-01-13-StackPtrIndex.ll added (r1.1) --- Log message: new testcase for pr1103: http://llvm.org/PR1103 --- Diffs of the changes: (+464 -0) 2007-01-13-StackPtrIndex.ll | 464 1 files cha

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

2007-01-13 Thread Chris Lattner
Changes in directory llvm/lib/Target/X86: X86ATTAsmPrinter.cpp updated: 1.85 -> 1.86 --- Log message: Fix PR1103: http://llvm.org/PR1103 and Regression/CodeGen/X86/2007-01-13-StackPtrIndex.ll --- Diffs of the changes: (+17 -9) X86ATTAsmPrinter.cpp | 26 +- 1 fil

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

2007-01-13 Thread Chris Lattner
Changes in directory llvm/docs: LangRef.html updated: 1.194 -> 1.195 --- Log message: add a global variable example --- Diffs of the changes: (+8 -1) LangRef.html |9 - 1 files changed, 8 insertions(+), 1 deletion(-) Index: llvm/docs/LangRef.html diff -u llvm/docs/LangRef.htm

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

2007-01-13 Thread Chris Lattner
Changes in directory llvm/lib/Target/X86: X86ATTAsmPrinter.cpp updated: 1.86 -> 1.87 --- Log message: darwin doesn't use .hidden. Disable this until we fix it right. --- Diffs of the changes: (+1 -1) X86ATTAsmPrinter.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: l

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

2007-01-13 Thread Chris Lattner
Changes in directory llvm/lib/Target/X86: X86AsmPrinter.cpp updated: 1.225 -> 1.226 --- Log message: darwin doesn't use .hidden. Disable this until we fix it right. --- Diffs of the changes: (+1 -1) X86AsmPrinter.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm

[llvm-commits] CVS: llvm/test/Regression/Analysis/ScalarEvolution/

2007-01-13 Thread Chris Lattner
Changes in directory llvm/test/Regression/Analysis/ScalarEvolution: --- Log message: Directory /home/vadve/shared/PublicCVS/llvm/test/Regression/Analysis/ScalarEvolution added to the repository --- Diffs of the changes: (+0 -0) 0 files changed _

[llvm-commits] CVS: llvm/test/Regression/Analysis/ScalarEvolution/dg.exp trip-count.ll

2007-01-13 Thread Chris Lattner
Changes in directory llvm/test/Regression/Analysis/ScalarEvolution: dg.exp added (r1.1) trip-count.ll added (r1.1) --- Log message: new testcase for pr1101: http://llvm.org/PR1101 --- Diffs of the changes: (+34 -0) dg.exp|3 +++ trip-count.ll | 31 +++

[llvm-commits] CVS: llvm/lib/Analysis/ScalarEvolution.cpp

2007-01-13 Thread Chris Lattner
Changes in directory llvm/lib/Analysis: ScalarEvolution.cpp updated: 1.85 -> 1.86 --- Log message: Fix PR1101: http://llvm.org/PR1101 and Analysis/ScalarEvolution/trip-count.ll --- Diffs of the changes: (+5 -3) ScalarEvolution.cpp |8 +--- 1 files changed, 5 insertions(+), 3 delet

[llvm-commits] CVS: llvm/test/Regression/Analysis/BasicAA/2007-01-13-BasePointerBadNoAlias.ll

2007-01-13 Thread Chris Lattner
Changes in directory llvm/test/Regression/Analysis/BasicAA: 2007-01-13-BasePointerBadNoAlias.ll added (r1.1) --- Log message: testcase for pr1109: http://llvm.org/PR1109 --- Diffs of the changes: (+35 -0) 2007-01-13-BasePointerBadNoAlias.ll | 35 +++ 1 fi

[llvm-commits] CVS: llvm/lib/Analysis/BasicAliasAnalysis.cpp

2007-01-13 Thread Chris Lattner
Changes in directory llvm/lib/Analysis: BasicAliasAnalysis.cpp updated: 1.100 -> 1.101 --- Log message: fit to 80 cols. Remove now-extraneous checks for ptr->ptr bitcasts. Fix PR1109: http://llvm.org/PR1109 and Analysis/BasicAA/2007-01-13-BasePointerBadNoAlias.ll. We need to consider arbitr

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

2007-01-13 Thread Chris Lattner
Changes in directory llvm/lib/Target/X86: X86ATTAsmPrinter.cpp updated: 1.87 -> 1.88 --- Log message: add a missing else. This caused globals to be printed as: movq [EMAIL PROTECTED](%rip)(%rip), %rsi instead of: movq [EMAIL PROTECTED](%rip), %rsi --- Diffs of the changes:

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

2007-01-13 Thread Chris Lattner
Changes in directory llvm/lib/Target: TargetAsmInfo.cpp updated: 1.11 -> 1.12 --- Log message: add a new HiddenDirective member for handling visibility. --- Diffs of the changes: (+1 -0) TargetAsmInfo.cpp |1 + 1 files changed, 1 insertion(+) Index: llvm/lib/Target/TargetAsmInfo.cpp

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

2007-01-13 Thread Chris Lattner
Changes in directory llvm/include/llvm/Target: TargetAsmInfo.h updated: 1.18 -> 1.19 --- Log message: add a new HiddenDirective member for handling visibility. --- Diffs of the changes: (+7 -0) TargetAsmInfo.h |7 +++ 1 files changed, 7 insertions(+) Index: llvm/include/llvm/Targ

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

2007-01-13 Thread Chris Lattner
Changes in directory llvm/lib/Target/X86: X86ATTAsmPrinter.cpp updated: 1.88 -> 1.89 X86AsmPrinter.cpp updated: 1.226 -> 1.227 X86TargetAsmInfo.cpp updated: 1.21 -> 1.22 --- Log message: add support for hidden visibility to darwin/x86 --- Diffs of the changes: (+7 -4) X86ATTAsmPrinter.cpp

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

2007-01-13 Thread Reid Spencer
Changes in directory llvm/docs: LangRef.html updated: 1.195 -> 1.196 --- Log message: Fix an incorrect conversion of int -> i32 --- 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/Lan

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

2007-01-13 Thread Chris Lattner
Changes in directory llvm/lib/Target/PowerPC: PPCAsmPrinter.cpp updated: 1.227 -> 1.228 PPCTargetAsmInfo.cpp updated: 1.10 -> 1.11 --- Log message: add support for hidden visibility to darwin/ppc and linux/ppc targets --- Diffs of the changes: (+22 -1) PPCAsmPrinter.cpp| 22 +

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

2007-01-13 Thread Chris Lattner
Changes in directory llvm/docs: LangRef.html updated: 1.196 -> 1.197 --- Log message: clarify linkonce/weak linkage --- Diffs of the changes: (+11 -8) LangRef.html | 19 +++ 1 files changed, 11 insertions(+), 8 deletions(-) Index: llvm/docs/LangRef.html diff -u llvm/do