forked from OSchip/llvm-project
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:
parent
a22a5b382f
commit
b848c2457e
|
@ -8,10 +8,10 @@
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
declare void %printf([13 x sbyte]*)
|
declare void %printf([13 x sbyte]*,...)
|
||||||
|
|
||||||
void %bar() {
|
void %bar() {
|
||||||
call void %printf([13 x sbyte]* %msg)
|
call void([13 x sbyte]*,...)* %printf([13 x sbyte]* %msg)
|
||||||
ret void
|
ret void
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue