Home | History | Annotate | Download | only in Sema

Lines Matching full:c99

64 void test10 (int x[*]); /* expected-warning {{variable length arrays are a C99 feature}} */
65 void test11 (int x[static 4]); /* expected-warning {{static array size is a C99 feature}} */
67 void test12 (int x[const 4]) { /* expected-warning {{qualifier in array size is a C99 feature}} */
68 int Y[x[1]]; /* expected-warning {{variable length arrays are a C99 feature}} */
84 int test15[5] = { [2] = 1 }; /* expected-warning {{designated initializers are a C99 feature}} */
93 struct x { int x,y[]; }; /* expected-warning {{flexible array members are a C99 feature}} */
116 long long ll1 = /* expected-warning {{'long long' is an extension when C99 mode is not enabled}} */
117 -42LL; /* expected-warning {{'long long' is an extension when C99 mode is not enabled}} */
118 unsigned long long ull1 = /* expected-warning {{'long long' is an extension when C99 mode is not enabled}} */
119 42ULL; /* expected-warning {{'long long' is an extension when C99 mode is not enabled}} */