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

2007-02-18 Thread Chris Lattner
Changes in directory llvm/tools/bugpoint: Miscompilation.cpp updated: 1.88 -> 1.89 --- Log message: remove use of deprecated apis --- Diffs of the changes: (+1 -2) Miscompilation.cpp |3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) Index: llvm/tools/bugpoint/Miscompilation.cpp

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

2007-02-12 Thread Chris Lattner
Changes in directory llvm/tools/bugpoint: Miscompilation.cpp updated: 1.87 -> 1.88 --- Log message: eliminate use of vector-related ctors --- Diffs of the changes: (+7 -4) Miscompilation.cpp | 11 +++ 1 files changed, 7 insertions(+), 4 deletions(-) Index: llvm/tools/bugpoint/M

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

2007-01-07 Thread Chris Lattner
Changes in directory llvm/tools/bugpoint: Miscompilation.cpp updated: 1.83 -> 1.84 --- Log message: relax type --- Diffs of the changes: (+1 -1) Miscompilation.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/tools/bugpoint/Miscompilation.cpp diff -u llvm/tools/b

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

2006-12-22 Thread Reid Spencer
Changes in directory llvm/tools/bugpoint: Miscompilation.cpp updated: 1.81 -> 1.82 --- Log message: For PR950: http://llvm.org/PR950 : This patch removes the SetCC instructions and replaces them with the ICmp and FCmp instructions. The SetCondInst instruction has been removed and been replaced

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

2006-11-11 Thread Reid Spencer
Changes in directory llvm/tools/bugpoint: Miscompilation.cpp updated: 1.79 -> 1.80 --- Log message: Minor style fixes from review. --- Diffs of the changes: (+2 -3) Miscompilation.cpp |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) Index: llvm/tools/bugpoint/Miscompilation

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

2006-11-11 Thread Reid Spencer
Changes in directory llvm/tools/bugpoint: Miscompilation.cpp updated: 1.78 -> 1.79 --- Log message: Add a -disable-loop-extraction option to bugpoint. --- Diffs of the changes: (+9 -2) Miscompilation.cpp | 11 +-- 1 files changed, 9 insertions(+), 2 deletions(-) Index: llvm/too

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

2006-09-07 Thread Chris Lattner
Changes in directory llvm/tools/bugpoint: Miscompilation.cpp updated: 1.76 -> 1.77 --- Log message: Change DisambiguateGlobalSymbols to not rename asm globals, which breaks bugpoint on leopard. --- Diffs of the changes: (+1 -0) Miscompilation.cpp |1 + 1 files changed, 1 insertion(+)

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

2006-05-04 Thread Chris Lattner
Changes in directory llvm/tools/bugpoint: Miscompilation.cpp updated: 1.74 -> 1.75 --- Log message: wrap long line --- Diffs of the changes: (+2 -1) Miscompilation.cpp |3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) Index: llvm/tools/bugpoint/Miscompilation.cpp diff -u llvm/t

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

2005-12-14 Thread Chris Lattner
Changes in directory llvm/tools/bugpoint: Miscompilation.cpp updated: 1.73 -> 1.74 --- Log message: Fix printing of the instructions. --- Diffs of the changes: (+1 -1) Miscompilation.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/tools/bugpoint/Miscompilation.c

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

2005-12-06 Thread Andrew Lenharth
Changes in directory llvm/tools/bugpoint: Miscompilation.cpp updated: 1.72 -> 1.73 --- Log message: This solves the problem of the CBE renaming symbols that start with . but the assembly side still trying to reference them by their old names. Should be safe untill we hit a language front end

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

2005-10-22 Thread Jeff Cohen
Changes in directory llvm/tools/bugpoint: Miscompilation.cpp updated: 1.71 -> 1.72 --- Log message: When a function takes a variable number of pointer arguments, with a zero pointer marking the end of the list, the zero *must* be cast to the pointer type. An un-cast zero is a 32-bit int, and a