Home | History | Annotate | Download | only in Sema

Lines Matching full:warning

3 void cat0(int a[static 0]) {} // expected-warning {{'static' has no effect on zero-length arrays}}
14 cat(0); // expected-warning {{null passed to a callee that requires a non-null argument}}
15 cat(a); // expected-warning {{array argument is too small; contains 2 elements, callee requires at least 3}}
20 vat(1, 0); // expected-warning {{null passed to a callee that requires a non-null argument}}
26 typedef void(*fp)(int[static 42]); // no-warning
38 void h(int [static const 10][42]); // no-warning
47 void l(int (x)[static 10]); // no-warning
48 void m(int *x[static 10]); // no-warning
49 void n(int *(x)[static 10]); // no-warning
53 void q(int (^x[static 10])()); // no-warning
56 int x[restrict]; // no-warning