[llvm-commits] CVS: llvm/test/Regression/ExecutionEngine/hello2.ll

Chris Lattner lattner at cs.uiuc.edu
Wed May 17 16:44:08 PDT 2006



Changes in directory llvm/test/Regression/ExecutionEngine:

hello2.ll updated: 1.2 -> 1.3
---
Log message:

This test is buggy: printf is a varargs function.  This fixes the test with
the PPC JIT


---
Diffs of the changes:  (+2 -2)

 hello2.ll |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/test/Regression/ExecutionEngine/hello2.ll
diff -u llvm/test/Regression/ExecutionEngine/hello2.ll:1.2 llvm/test/Regression/ExecutionEngine/hello2.ll:1.3
--- llvm/test/Regression/ExecutionEngine/hello2.ll:1.2	Sat Nov  6 17:32:43 2004
+++ llvm/test/Regression/ExecutionEngine/hello2.ll	Wed May 17 18:43:56 2006
@@ -8,10 +8,10 @@
 
 implementation
 
-declare void %printf([13 x sbyte]*)
+declare void %printf([13 x sbyte]*,...)
 
 void %bar() {
-  call void %printf([13 x sbyte]* %msg)
+  call void([13 x sbyte]*,...)* %printf([13 x sbyte]* %msg)
   ret void 
 }
 






More information about the llvm-commits mailing list