Home | History | Annotate | Download | only in Sema

Lines Matching full:warning

6    int a[];  /* expected-warning {{flexible array member 'a' in otherwise empty struct is a Microsoft extension}} */
12 int a[]; /* expected-warning {{flexible array member 'a' in otherwise empty struct is a Microsoft extension}} */
18 int c1[]; /* expected-warning {{flexible array member 'c1' in a union is a Microsoft extension}} */
19 char c2[]; /* expected-warning {{flexible array member 'c2' in a union is a Microsoft extension}} */
45 NESTED1; // expected-warning {{anonymous structs are a Microsoft extension}}
52 struct nested4 { // expected-warning {{anonymous structs are a Microsoft extension}}
55 union nested5 { // expected-warning {{anonymous unions are a Microsoft extension}}
66 struct nested2; // expected-warning {{anonymous structs are a Microsoft extension}}
67 NESTED6; // expected-warning {{anonymous unions are a Microsoft extension}}
85 enum E1 : Int { SomeOtherValue } field; // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}}
89 enum : long long { // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}}
110 AA; // expected-warning {{anonymous structs are a Microsoft extension}}
114 struct undefined; // expected-warning {{anonymous structs are a Microsoft extension}}
130 e1 = one; // expected-warning {{'e1' is deprecated: This is deprecated}}
131 struct DS1 s = { 0 }; // expected-warning {{'DS1' is deprecated}}
132 Dfunc1(); // expected-warning {{'Dfunc1' is deprecated: This is also deprecated}}
134 enum DE1 no; // no warning because E1 is not deprecated
141 int * __sptr __sptr wrong3; // expected-warning {{attribute '__sptr' is already applied}}
151 int * __sptr __ptr32 __sptr wrong4; // expected-warning {{attribute '__sptr' is already applied}}
155 int *wrong6 __ptr32; // expected-error {{expected ';' after top level declarator}} expected-warning {{declaration does not declare anything}}
159 int * __ptr32 __ptr32 wrong8; // expected-warning {{attribute '__ptr32' is already applied}}
176 __va_start(ap, f); // expected-warning {{incompatible pointer types passing 'my_va_list'}}
183 int *p2 = p1; // expected-warning {{initializing 'int *' with an expression of type '__unaligned int *' discards qualifiers}}