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

the PPC JIT

llvm-svn: 28375
This commit is contained in:
Chris Lattner 2006-05-17 23:43:56 +00:00
parent a22a5b382f
commit b848c2457e
1 changed files with 2 additions and 2 deletions

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
}