Chris Lattner | c628b17 | 2001-07-25 22:49:12 +0000 | [diff] [blame^] | 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 |