Make testcase more interesting
[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         call int(sbyte*, ...) *%printf(sbyte * null, int 12, sbyte 42);
8         ret int %0
9 end
10
11