diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-17 23:43:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-17 23:43:56 +0000 |
commit | f0dee9b36a4a9a9bd14566f8ddae27be40facbe7 (patch) | |
tree | 17be823341783e6ebe30aae9903b855628c3ccc6 /test/ExecutionEngine | |
parent | dd1aac36a190c977cfd5433816fb78ed36c7101c (diff) | |
download | external_llvm-f0dee9b36a4a9a9bd14566f8ddae27be40facbe7.zip external_llvm-f0dee9b36a4a9a9bd14566f8ddae27be40facbe7.tar.gz external_llvm-f0dee9b36a4a9a9bd14566f8ddae27be40facbe7.tar.bz2 |
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
Diffstat (limited to 'test/ExecutionEngine')
-rw-r--r-- | test/ExecutionEngine/hello2.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ExecutionEngine/hello2.ll b/test/ExecutionEngine/hello2.ll index eaeb238..92aa5f1 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 } |