[llvm-commits] CVS: llvm/examples/HowToUseJIT/HowToUseJIT.cpp

2007-03-06 Thread Reid Spencer
Changes in directory llvm/examples/HowToUseJIT: HowToUseJIT.cpp updated: 1.16 -> 1.17 --- Log message: Adjust for changes in GenericValue type. --- Diffs of the changes: (+1 -1) HowToUseJIT.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/examples/HowToUseJIT/How

[llvm-commits] CVS: llvm/examples/HowToUseJIT/HowToUseJIT.cpp

2007-02-12 Thread Chris Lattner
Changes in directory llvm/examples/HowToUseJIT: HowToUseJIT.cpp updated: 1.15 -> 1.16 --- Log message: eliminate vector-related ctors --- Diffs of the changes: (+1 -3) HowToUseJIT.cpp |4 +--- 1 files changed, 1 insertion(+), 3 deletions(-) Index: llvm/examples/HowToUseJIT/HowToUseJI

[llvm-commits] CVS: llvm/examples/HowToUseJIT/HowToUseJIT.cpp

2007-01-19 Thread Reid Spencer
Changes in directory llvm/examples/HowToUseJIT: HowToUseJIT.cpp updated: 1.14 -> 1.15 --- Log message: Add a #include to resolve IntegerType class. --- Diffs of the changes: (+1 -1) HowToUseJIT.cpp |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/examples/HowToUseJIT

[llvm-commits] CVS: llvm/examples/HowToUseJIT/HowToUseJIT.cpp

2007-01-07 Thread Chris Lattner
Changes in directory llvm/examples/HowToUseJIT: HowToUseJIT.cpp updated: 1.13 -> 1.14 --- Log message: add some casts to support a change in the getOrInsertFunction interface --- Diffs of the changes: (+5 -3) HowToUseJIT.cpp |8 +--- 1 files changed, 5 insertions(+), 3 deletions(-)

[llvm-commits] CVS: llvm/examples/HowToUseJIT/HowToUseJIT.cpp

2006-12-30 Thread Reid Spencer
Changes in directory llvm/examples/HowToUseJIT: HowToUseJIT.cpp updated: 1.12 -> 1.13 --- Log message: For PR950: http://llvm.org/PR950 : Convert signed integer types to signless. --- Diffs of the changes: (+5 -5) HowToUseJIT.cpp | 10 +- 1 files changed, 5 insertions(+), 5 delet

[llvm-commits] CVS: llvm/examples/HowToUseJIT/HowToUseJIT.cpp

2006-10-20 Thread Reid Spencer
Changes in directory llvm/examples/HowToUseJIT: HowToUseJIT.cpp updated: 1.11 -> 1.12 --- Log message: For PR950: http://llvm.org/PR950 : This patch implements the first increment for the Signless Types feature. All changes pertain to removing the ConstantSInt and ConstantUInt classes in favor

[llvm-commits] CVS: llvm/examples/HowToUseJIT/HowToUseJIT.cpp

2006-03-23 Thread Jeff Cohen
Changes in directory llvm/examples/HowToUseJIT: HowToUseJIT.cpp updated: 1.10 -> 1.11 --- Log message: Minor corrections. --- Diffs of the changes: (+2 -1) HowToUseJIT.cpp |3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) Index: llvm/examples/HowToUseJIT/HowToUseJIT.cpp diff -u

[llvm-commits] CVS: llvm/examples/HowToUseJIT/HowToUseJIT.cpp

2005-10-22 Thread Jeff Cohen
Changes in directory llvm/examples/HowToUseJIT: HowToUseJIT.cpp updated: 1.9 -> 1.10 --- 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