79c9000265578e16130db027893d71aa7b9f7944
[oota-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