blob: 79c9000265578e16130db027893d71aa7b9f7944 [file] [log] [blame]
Chris Lattnerc628b172001-07-25 22:49:12 +00001implementation
2
3declare int "printf"(sbyte*, ...) ;; Prototype for: int __builtin_printf(const char*, ...)
4
5int "testvarar"()
6begin
7 cast int 0 to sbyte*
8 call int(sbyte*, ...) %printf(sbyte * %0, int 12, sbyte 42);
9 ret int %0
10end
11
12