From: Chris Lattner Date: Wed, 17 May 2006 23:43:56 +0000 (+0000) Subject: This test is buggy: printf is a varargs function. This fixes the test with X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f0dee9b36a4a9a9bd14566f8ddae27be40facbe7;p=oota-llvm.git 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 --- diff --git a/test/ExecutionEngine/hello2.ll b/test/ExecutionEngine/hello2.ll index eaeb238ac05..92aa5f19184 100644 --- a/test/ExecutionEngine/hello2.ll +++ b/test/ExecutionEngine/hello2.ll @@ -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 }