OSDN Git Service

Adjust test cases to match the fact that methods are now explicit pointer values...
[android-x86/external-llvm.git] / test / Feature / testvarargs.ll
1 implementation
2
3 declare int "printf"(sbyte*, ...)   ;; Prototype for: int __builtin_printf(const char*, ...)
4
5 int "testvarar"()
6 begin
7         cast int 0 to sbyte*
8         call int(sbyte*, ...) *%printf(sbyte * %0, int 12, sbyte 42);
9         ret int %0
10 end
11
12