summaryrefslogtreecommitdiff
path: root/test/Feature/testvarargs.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-10-03 14:50:12 +0000
committerChris Lattner <sabre@nondot.org>2001-10-03 14:50:12 +0000
commitda257162968820a7fd77a9df44e3f72090a7f13a (patch)
tree1bc033fab0bd3131f2f7fc1fb61707945adcfa22 /test/Feature/testvarargs.ll
parentf4ba6c710c298fe9b492b9cde82ce5efd46afd5d (diff)
downloadllvm-da257162968820a7fd77a9df44e3f72090a7f13a.tar.gz
llvm-da257162968820a7fd77a9df44e3f72090a7f13a.tar.bz2
llvm-da257162968820a7fd77a9df44e3f72090a7f13a.tar.xz
Adjust test cases to match the fact that methods are now explicit pointer values, not explicit
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@702 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Feature/testvarargs.ll')
-rw-r--r--test/Feature/testvarargs.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Feature/testvarargs.ll b/test/Feature/testvarargs.ll
index 79c9000265..a26c81ac5b 100644
--- a/test/Feature/testvarargs.ll
+++ b/test/Feature/testvarargs.ll
@@ -5,7 +5,7 @@ declare int "printf"(sbyte*, ...) ;; Prototype for: int __builtin_printf(const
int "testvarar"()
begin
cast int 0 to sbyte*
- call int(sbyte*, ...) %printf(sbyte * %0, int 12, sbyte 42);
+ call int(sbyte*, ...) *%printf(sbyte * %0, int 12, sbyte 42);
ret int %0
end