blob: 3ea9d79a5fdf81db7e7a7fbbf218d620d7a7082a [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001//RUN: %clang_cc1 -fsyntax-only -verify %s
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002
3#include <stdarg.h>
4
5void a(const char *a, ...) __attribute__((format(printf, 1,2))); // no-error
6void b(const char *a, ...) __attribute__((format(printf, 1,1))); // expected-error {{'format' attribute parameter 3 is out of bounds}}
7void c(const char *a, ...) __attribute__((format(printf, 0,2))); // expected-error {{'format' attribute parameter 2 is out of bounds}}
8void d(const char *a, int c) __attribute__((format(printf, 1,2))); // expected-error {{format attribute requires variadic function}}
9void e(char *str, int c, ...) __attribute__((format(printf, 2,3))); // expected-error {{format argument not a string type}}
10
11typedef const char* xpto;
12void f(xpto c, va_list list) __attribute__((format(printf, 1, 0))); // no-error
13void g(xpto c) __attribute__((format(printf, 1, 0))); // no-error
14
15void y(char *str) __attribute__((format(strftime, 1,0))); // no-error
16void z(char *str, int c, ...) __attribute__((format(strftime, 1,2))); // expected-error {{strftime format attribute requires 3rd parameter to be 0}}
Nuno Lopes8c1a9a82008-03-25 23:01:48 +000017
18int (*f_ptr)(char*,...) __attribute__((format(printf, 1,2))); // no-error
19int (*f2_ptr)(double,...) __attribute__((format(printf, 1, 2))); // expected-error {{format argument not a string type}}
Nuno Lopes59b6d5a2008-04-18 22:43:39 +000020
21struct _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 Kremenek72786e02008-05-09 17:36:24 +000025
26typedef int (*f3_ptr)(char*,...) __attribute__((format(printf,1,0))); // no-error
Ted Kremenek3d692df2009-02-27 17:58:43 +000027
28// <rdar://problem/6623513>
29int rdar6623513(void *, const char*, const char*, ...)
30 __attribute__ ((format (printf, 3, 0)));
31
32int rdar6623513_aux(int len, const char* s) {
33 rdar6623513(0, "hello", "%.*s", len, s);
34}
Chris Lattnera87d4772010-03-22 21:05:15 +000035
36
37
38// same as format(printf(...))...
39void a2(const char *a, ...) __attribute__((format(printf0, 1,2))); // no-error
40void b2(const char *a, ...) __attribute__((format(printf0, 1,1))); // expected-error {{'format' attribute parameter 3 is out of bounds}}
41void c2(const char *a, ...) __attribute__((format(printf0, 0,2))); // expected-error {{'format' attribute parameter 2 is out of bounds}}
42void d2(const char *a, int c) __attribute__((format(printf0, 1,2))); // expected-error {{format attribute requires variadic function}}
43void e2(char *str, int c, ...) __attribute__((format(printf0, 2,3))); // expected-error {{format argument not a string type}}
44
45// FreeBSD usage
46#define __printf0like(fmt,va) __attribute__((__format__(__printf0__,fmt,va)))
47void null(int i, const char *a, ...) __printf0like(2,0); // no-error
Douglas Gregora41a8c52010-04-22 00:20:18 +000048void null(int i, const char *a, ...) { // expected-note{{passing argument to parameter 'a' here}}
Chris Lattnera87d4772010-03-22 21:05:15 +000049 if (a)
50 (void)0/* vprintf(...) would go here */;
51}
52
53void callnull(void){
54 null(0, 0); // no error
55 null(0, (char*)0); // no error
56 null(0, (void*)0); // no error
57 null(0, (int*)0); // expected-warning {{incompatible pointer types}}
58}
59
Stephen Hines0e2c34f2015-03-23 12:09:02 -070060// FreeBSD kernel extensions
61void a3(const char *a, ...) __attribute__((format(freebsd_kprintf, 1,2))); // no-error
62void b3(const char *a, ...) __attribute__((format(freebsd_kprintf, 1,1))); // expected-error {{'format' attribute parameter 3 is out of bounds}}
63void c3(const char *a, ...) __attribute__((format(freebsd_kprintf, 0,2))); // expected-error {{'format' attribute parameter 2 is out of bounds}}
64void d3(const char *a, int c) __attribute__((format(freebsd_kprintf, 1,2))); // expected-error {{format attribute requires variadic function}}
65void e3(char *str, int c, ...) __attribute__((format(freebsd_kprintf, 2,3))); // expected-error {{format argument not a string type}}
66
Chris Lattnera87d4772010-03-22 21:05:15 +000067
68
69// PR4470
70int xx_vprintf(const char *, va_list);
71
72const char *foo(const char *format) __attribute__((format_arg(1)));
73
74void __attribute__((format(printf, 1, 0)))
75foo2(const char *fmt, va_list va) {
76 xx_vprintf(foo(fmt), va);
77}
Chris Lattner3c989022010-03-22 21:08:50 +000078
79// PR6542
80extern void gcc_format (const char *, ...)
Duncan Sandsbc525952010-03-23 14:44:19 +000081 __attribute__ ((__format__(__gcc_diag__, 1, 2)));
82extern void gcc_cformat (const char *, ...)
83 __attribute__ ((__format__(__gcc_cdiag__, 1, 2)));
84extern void gcc_cxxformat (const char *, ...)
85 __attribute__ ((__format__(__gcc_cxxdiag__, 1, 2)));
86extern void gcc_tformat (const char *, ...)
Chris Lattner3c989022010-03-22 21:08:50 +000087 __attribute__ ((__format__(__gcc_tdiag__, 1, 2)));
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +000088
89const char *foo3(const char *format) __attribute__((format_arg("foo"))); // expected-error{{'format_arg' attribute requires parameter 1 to be an integer constant}}