Daniel Dunbar | d7d5f02 | 2009-03-24 02:24:46 +0000 | [diff] [blame] | 1 | //RUN: clang-cc -fsyntax-only -verify %s |
Ted Kremenek | aa8f976 | 2008-03-07 18:43:49 +0000 | [diff] [blame] | 2 | |
| 3 | #include <stdarg.h> |
| 4 | |
| 5 | void a(const char *a, ...) __attribute__((format(printf, 1,2))); // no-error |
| 6 | void b(const char *a, ...) __attribute__((format(printf, 1,1))); // expected-error {{'format' attribute parameter 3 is out of bounds}} |
| 7 | void c(const char *a, ...) __attribute__((format(printf, 0,2))); // expected-error {{'format' attribute parameter 2 is out of bounds}} |
| 8 | void d(const char *a, int c) __attribute__((format(printf, 1,2))); // expected-error {{format attribute requires variadic function}} |
| 9 | void e(char *str, int c, ...) __attribute__((format(printf, 2,3))); // expected-error {{format argument not a string type}} |
| 10 | |
| 11 | typedef const char* xpto; |
| 12 | void f(xpto c, va_list list) __attribute__((format(printf, 1, 0))); // no-error |
| 13 | void g(xpto c) __attribute__((format(printf, 1, 0))); // no-error |
| 14 | |
| 15 | void y(char *str) __attribute__((format(strftime, 1,0))); // no-error |
| 16 | void z(char *str, int c, ...) __attribute__((format(strftime, 1,2))); // expected-error {{strftime format attribute requires 3rd parameter to be 0}} |
Nuno Lopes | 8c1a9a8 | 2008-03-25 23:01:48 +0000 | [diff] [blame] | 17 | |
| 18 | int (*f_ptr)(char*,...) __attribute__((format(printf, 1,2))); // no-error |
| 19 | int (*f2_ptr)(double,...) __attribute__((format(printf, 1, 2))); // expected-error {{format argument not a string type}} |
Nuno Lopes | 59b6d5a | 2008-04-18 22:43:39 +0000 | [diff] [blame] | 20 | |
| 21 | struct _mystruct { |
| 22 | int (*printf)(const char *format, ...) __attribute__((__format__(printf, 1, 2))); // no-error |
| 23 | int (*printf2)(double format, ...) __attribute__((__format__(printf, 1, 2))); // expected-error {{format argument not a string type}} |
| 24 | }; |
Ted Kremenek | 72786e0 | 2008-05-09 17:36:24 +0000 | [diff] [blame] | 25 | |
| 26 | typedef int (*f3_ptr)(char*,...) __attribute__((format(printf,1,0))); // no-error |
Ted Kremenek | 3d692df | 2009-02-27 17:58:43 +0000 | [diff] [blame] | 27 | |
| 28 | // <rdar://problem/6623513> |
| 29 | int rdar6623513(void *, const char*, const char*, ...) |
| 30 | __attribute__ ((format (printf, 3, 0))); |
| 31 | |
| 32 | int rdar6623513_aux(int len, const char* s) { |
| 33 | rdar6623513(0, "hello", "%.*s", len, s); |
| 34 | } |