1 /* RUN: %clang_cc1 -std=c89 -verify=expected,c89only,pre-c23 -pedantic -Wno-c11-extensions %s
2 RUN: %clang_cc1 -std=c99 -verify=expected,pre-c23 -pedantic -Wno-c11-extensions %s
3 RUN: %clang_cc1 -std=c11 -verify=expected,pre-c23 -pedantic %s
4 RUN: %clang_cc1 -std=c17 -verify=expected,pre-c23 -pedantic %s
5 RUN: %clang_cc1 -std=c2x -verify=expected -pedantic %s
8 /* The following are DRs which do not require tests to demonstrate
9 * conformance or nonconformance.
12 * "happens before" can not be cyclic
15 * Memory model coherence is not aligned with C++11
18 * Joke fragment remains in a footnote
21 * Visible sequences of side effects are redundant
24 * Missing divide by zero entry in Annex J
27 * Annex J not updated with necessary aligned_alloc entries
33 * Sytax error in specification of for-statement
36 * No specification for the access to variables with temporary lifetime
39 * Possible defect report: Missing constraint w.r.t. Atomic
42 * Possible defect report: Missing constraint w.r.t. Imaginary
45 * Request for interpretation of C11 6.8.5#6
46 * Note: This is not really testable because it requires -O1 or higher for LLVM
47 * to perform its reachability analysis and -Wunreachable-code only verifies
48 * diagnostic behavior, not runtime behavior. Also, both are a matter of QoI as
49 * to what they optimize/diagnose. But if someone thinks of a way to test this,
50 * we can add a test case for it then.
53 * What are the semantics of a # non-directive?
56 * ATOMIC_VAR_INIT (issues 3 and 4)
59 * ATOMIC_VAR_INIT issue 5
62 * atomic_load missing const qualifier
65 * Misleading Atomic library references to atomic types
68 * Problem with the specification of ATOMIC_VAR_INIT
71 * Inconsistent specification for arithmetic on atomic objects
74 * Unwritten Assumptions About if-then
80 * Note: this is testing that #elif behaves the same as #else followed by #if.
83 #elif this is not a valid expression
85 #if this is not a valid expression
104 /* Ensure that explicit initialization (.t = { ... }) takes precedence over a
105 * later implicit partial initialization (.t.l = 41). The value should be 42,
108 _Static_assert((S
){ /* c89only-warning {{compound literals are a C99-specific feature}}
109 expected-warning {{expression is not an integer constant expression; folding it to a constant is a GNU extension}}
112 .t
= { /* c89only-warning {{designated initializers are a C99 feature}} */
113 .l
= 43, /* c89only-warning {{designated initializers are a C99 feature}}
114 expected-note {{previous initialization is here}}
117 .a
[1] = 19, /* expected-note {{previous initialization is here}} */
120 .t
.l
= 41, /* expected-warning {{initializer overrides prior initialization of this subobject}} */
121 .t
.a
[1] = 17 /* expected-warning {{initializer overrides prior initialization of this subobject}} */
125 /* WG14 DR423: partial
126 * Defect Report relative to n1570: underspecification for qualified rvalues
129 /* FIXME: this should pass because the qualifier on the return type should be
130 * dropped when forming the function type.
132 const int dr423_const(void);
133 int dr423_nonconst(void);
134 _Static_assert(__builtin_types_compatible_p(__typeof__(dr423_const
), __typeof__(dr423_nonconst
)), "fail"); /* expected-error {{fail}} */
136 void dr423_func(void) {
138 __typeof__(i
) v1
= 12; /* expected-note {{variable 'v1' declared const here}} */
139 __typeof__((const int)12) v2
= 12;
141 v1
= 100; /* expected-error {{cannot assign to variable 'v1' with const-qualified type 'typeof (i)' (aka 'const int')}} */
142 v2
= 100; /* Not an error; the qualifier was stripped. */
146 * Possible defect report: Is 0.0 required to be a representable value?
148 * We're going to lean on the fpclassify builtin to tell us whether 0.0
149 * represents the value 0, and we'll test that adding and subtracting 0.0 does
150 * not change the value, and we'll hope that's enough to validate this DR.
152 _Static_assert(__builtin_fpclassify(0, 1, 2, 3, 4, 0.0f
) == 4, "");
153 _Static_assert((1.0 / 3.0) + 0.0 == (1.0 / 3.0) - 0.0, ""); /* expected-warning {{expression is not an integer constant expression; folding it to a constant is a GNU extension}} */
155 /* WG14 DR444: partial
156 * Issues with alignment in C11, part 1
160 _Alignas(int) struct S
{
164 /* FIXME: This should be accepted as per this DR. */
165 int j
= (_Alignas(int) int){12}; /* expected-error {{expected expression}} */
167 _Alignas(int) struct T
{ /* expected-warning {{'_Alignas' attribute ignored}} */
172 _Alignas(int) int bit
: 1; /* expected-error {{'_Alignas' attribute cannot be applied to a bit-field}} */
175 _Alignas(int) typedef int foo
; /* expected-error {{'_Alignas' attribute only applies to variables and fields}} */
176 _Alignas(int) register int bar
; /* expected-error {{'_Alignas' attribute cannot be applied to a variable with 'register' storage class}} */
177 _Alignas(int) void func(void); /* expected-error {{'_Alignas' attribute only applies to variables and fields}} */
179 /* FIXME: it is correct for us to accept this per 6.7.3p5, but it seems like
180 * a situation we'd want to diagnose because the alignments are different and
181 * the user probably doesn't know which one "wins".
183 _Alignas(int) _Alignas(double) int k
;
187 * Boolean from complex
189 * Ensure that the imaginary part contributes to the conversion to bool, not
190 * just the real part.
192 _Static_assert((_Bool
)0.0 + 3.0 * (__extension__
1.0iF
), ""); /* c89only-warning {{'_Bool' is a C99 extension}}
193 expected-warning {{expression is not an integer constant expression; folding it to a constant is a GNU extension}}
195 _Static_assert(!(_Bool
)0.0 + 0.0 * (__extension__
1.0iF
), ""); /* c89only-warning {{'_Bool' is a C99 extension}}
196 expected-warning {{expression is not an integer constant expression; folding it to a constant is a GNU extension}}
200 * Left-shifting into the sign bit
202 * This DR was NAD and leaves shifting a bit into the high bit of a signed
203 * integer type undefined behavior, unlike in C++. Note, the diagnostic is also
204 * issued in C++ for shifting into that bit despite being well-defined because
205 * the code is questionable and should be validated by the programmer.
208 (void)(1 << (__CHAR_BIT__
* sizeof(int))); /* expected-warning {{shift count >= width of type}} */
209 (void)(1 << ((__CHAR_BIT__
* sizeof(int)) - 1));
213 * Valid uses of the main function
216 /* This DR clarifies that C explicitly allows you to call main() in a hosted
217 * environment; it is not special as it is in C++, so recursive calls are
218 * fine as well as nonrecursive direct calls.
224 int (*fp
)(void) = main
; /* ok */
229 * Controlling expression of _Generic primary expression
232 /* The controlling expression undergoes lvalue to rvalue conversion, and that
233 * performs array decay and strips qualifiers.
235 (void)_Generic("bla", char *: "blu");
236 (void)_Generic((int const){ 0 }, int: "blu"); /* c89only-warning {{compound literals are a C99-specific feature}} */
237 (void)_Generic(+(int const){ 0 }, int: "blu"); /* c89only-warning {{compound literals are a C99-specific feature}} */
239 (void)_Generic("bla", /* expected-error {{controlling expression type 'char *' not compatible with any generic association type}} */
240 char[4]: "blu"); /* expected-warning {{due to lvalue conversion of the controlling expression, association of type 'char[4]' will never be selected because it is of array type}} */
242 (void)_Generic((int const){ 0 }, /* expected-error {{controlling expression type 'int' not compatible with any generic association type}}
243 c89only-warning {{compound literals are a C99-specific feature}}
245 int const: "blu"); /* expected-warning {{due to lvalue conversion of the controlling expression, association of type 'const int' will never be selected because it is qualified}} */
247 (void)_Generic(+(int const){ 0 }, /* expected-error {{controlling expression type 'int' not compatible with any generic association type}}
248 c89only-warning {{compound literals are a C99-specific feature}}
250 int const: "blu"); /* expected-warning {{due to lvalue conversion of the controlling expression, association of type 'const int' will never be selected because it is qualified}} */
253 /* WG14 DR489: partial
254 * Integer Constant Expression
256 * The DR is about whether unevaluated operands have to follow the same
257 * restrictions as the rest of the expression in an ICE, and according to the
258 * committee, they do.
262 int bit
: 12 || 1.0f
; /* expected-warning {{expression is not an integer constant expression; folding it to a constant is a GNU extension}} */
265 Val
= 0 && 1.0f
/* expected-warning {{expression is not an integer constant expression; folding it to a constant is a GNU extension}} */
270 /* FIXME: mentioning the 'aligned' attribute is confusing, but also, should
271 * this be folded as an ICE as a GNU extension? GCC does not fold it.
273 _Alignas(0 ? i
++ : 8) char c
; /* expected-error {{'aligned' attribute requires integer constant}} */
275 /* FIXME: this should get the constant folding diagnostic as this is not a
276 * valid ICE because the floating-point constants are not the immediate
277 * operand of a cast. It should then also get a diagnostic about trying to
278 * declare a VLA with static storage duration and the C99 extension warning
281 static int vla
[sizeof(1.0f
+ 1.0f
)];
283 int val
[5] = { [1 ? 0 : i
--] = 12 }; /* expected-warning {{expression is not an integer constant expression; folding it to a constant is a GNU extension}}
284 c89only-warning {{designated initializers are a C99 feature}}
287 /* FIXME: this should be the constant folding diagnostic as this is not a
288 * valid ICE because of the / operator.
290 _Static_assert(sizeof(0 / 0), "");
292 /* FIXME: this should also get the constant folding diagnostic as this is not
293 * a valid ICE because of the = operator.
295 (void)_Generic(i
= 12, int : 0); /* expected-warning {{expression with side effects has no effect in an unevaluated context}} */
298 case (int)0.0f
: break; /* okay, a valid ICE */
300 /* FIXME: this should be accepted in C23 and up without a diagnostic, as C23
301 * added compound literals to the allowed list of things in an ICE. The
302 * diagnostic is correct for C17 and earlier though.
304 case (int){ 2 }: break; /* expected-warning {{expression is not an integer constant expression; folding it to a constant is a GNU extension}}
305 c89only-warning {{compound literals are a C99-specific feature}}
307 case 12 || main(): break; /* expected-warning {{expression is not an integer constant expression; folding it to a constant is a GNU extension}} */
312 * Named Child struct-union with no Member
315 union U11
{ /* expected-warning {{declaration does not declare anything}} */
326 struct A
{ int n
, a
[2]; };
327 struct B
{ struct A a
; };
328 struct C
{ struct A a
[1]; };
330 /* Array access & member access expressions are now valid. */
331 _Static_assert(__builtin_offsetof(struct B
, a
.n
) == 0, "");
332 /* First int below is for 'n' and the second int is for 'a[0]'; this presumes
333 * there is no padding involved.
335 _Static_assert(__builtin_offsetof(struct B
, a
.a
[1]) == sizeof(int) + sizeof(int), "");
337 /* However, we do not support using the -> operator to access a member, even
338 * if that would be a valid expression. FIXME: GCC accepts this, perhaps we
341 (void)__builtin_offsetof(struct C
, a
->n
); /* expected-error {{expected ')'}} \
342 expected-note {{to match this '('}}
345 /* The DR asked a question about whether defining a new type within offsetof
346 * is allowed. C23 N2350 had made this explicitly undefined behavior, but this
347 * was later overturned when C23 DE-137 was accepted, making it well-formed.
349 * Additionally, GCC and Clang both support it as an extension in pre-C23
352 (void)__builtin_offsetof(struct S
{ int a
; }, a
); /* pre-c23-warning{{defining a type within '__builtin_offsetof' is a C23 extension}} */
356 * Anonymous structure in union behavior
369 /* Validate that B1, B2, B3, and B4 do not have overlapping storage, only the
370 * anonymous structure and 'word' overlap.
372 _Static_assert(__builtin_offsetof(union U
, B1
) == 0, "");
373 _Static_assert(__builtin_offsetof(union U
, B2
) == 1, "");
374 _Static_assert(__builtin_offsetof(union U
, B3
) == 2, "");
375 _Static_assert(__builtin_offsetof(union U
, B4
) == 3, "");
376 _Static_assert(__builtin_offsetof(union U
, word
) == 0, "");