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

the PPC JIT


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28375 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-05-17 23:43:56 +00:00
parent dd1aac36a1
commit f0dee9b36a

View File

@ -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
}