1 // RUN: %clang_cc1 -fsyntax-only -verify -Wgnu-flexible-array-union-member %s
7 } TU
__attribute__((transparent_union
));
9 void f(TU
); // expected-note{{passing argument to parameter here}}
11 void g(int *ip
, float *fp
, char *cp
) {
14 f(cp
); // expected-error{{incompatible type}}
17 TU tu_ip
= ip
; // expected-error{{incompatible type}}
22 /* Test ability to redeclare a function taking a transparent_union arg
23 with various compatible and incompatible argument types. */
34 void fvp(TU
); // expected-note{{previous declaration is here}}
35 void fvp(void *p
) {} // expected-error{{conflicting types}}
37 void fsp(TU
); // expected-note{{previous declaration is here}}
38 void fsp(short *s
) {} // expected-error{{conflicting types}}
40 void fi(TU
); // expected-note{{previous declaration is here}}
41 void fi(int i
) {} // expected-error{{conflicting types}}
43 void fvpp(TU
); // expected-note{{previous declaration is here}}
44 void fvpp(void **v
) {} // expected-error{{conflicting types}}
46 /* Test redeclaring a function taking a transparent_union arg more than twice.
47 Merging different declarations depends on their order, vary order too. */
49 void f_triple0(TU tu
) {}
50 void f_triple0(int *); // expected-note{{previous declaration is here}}
51 void f_triple0(float *f
); // expected-error{{conflicting types}}
53 void f_triple1(int *);
54 void f_triple1(TU tu
) {} // expected-note{{previous definition is here}}
55 void f_triple1(float *f
); // expected-error{{conflicting types}}
57 void f_triple2(int *); // expected-note{{previous declaration is here}}
58 void f_triple2(float *f
); // expected-error{{conflicting types}}
59 void f_triple2(TU tu
) {}
61 /* Test calling redeclared function taking a transparent_union arg. */
64 void f_callee(int *i
) {} // expected-note{{passing argument to parameter 'i' here}}
68 f_callee(tu
); // expected-error{{passing 'TU' to parameter of incompatible type 'int *'}}
75 /* FIXME: we'd like to just use an "int" here and align it differently
76 from the normal "int", but if we do so we lose the alignment
77 information from the typedef within the compiler. */
78 typedef struct { int x
, y
; } __attribute__((aligned(8))) aligned_struct8
;
80 typedef struct { int x
, y
; } __attribute__((aligned(4))) aligned_struct4
;
82 aligned_struct4 s4
; // expected-note{{alignment of first field}}
83 aligned_struct8 s8
; // expected-warning{{alignment of field}}
84 } TU1
__attribute__((transparent_union
));
86 typedef union __attribute__((transparent_union
)) {
87 aligned_struct4 s4
; // expected-note{{alignment of first field}}
88 aligned_struct8 s8
; // expected-warning{{alignment of field}}
92 char c
; // expected-note{{size of first field is 8 bits}}
93 int i
; // expected-warning{{size of field}}
94 } TU2
__attribute__((transparent_union
));
96 typedef union __attribute__((transparent_union
)){
97 char c
; // expected-note{{size of first field is 8 bits}}
98 int i
; // expected-warning{{size of field}}
102 float f
; // expected-warning{{floating}}
103 } TU3
__attribute__((transparent_union
));
105 typedef union { } TU4
__attribute__((transparent_union
)); // expected-warning{{field}}
107 typedef int int4
__attribute__((ext_vector_type(4)));
109 int4 vec
; // expected-warning{{first field of a transparent union cannot have vector type 'int4' (vector of 4 'int' values); transparent_union attribute ignored}}
110 } TU5
__attribute__((transparent_union
));
116 unsigned int mant
:30;
117 } __attribute__((packed
));
118 // The packed attribute is acceptable because it defines a less strict
119 // alignment than required by the first field of the transparent union.
120 } __attribute__((transparent_union
));
123 struct { // expected-note {{alignment of first field is 32 bits}}
127 struct { // expected-warning-re {{alignment of field 'struct pr15134v2::(anonymous at {{.+}})' (64 bits) does not match the alignment of the first field in transparent union; transparent_union attribute ignored}}
129 } __attribute__((aligned(8)));
130 } __attribute__((transparent_union
));
132 union pr30520v
{ void b
; } __attribute__((transparent_union
)); // expected-error {{field has incomplete type 'void'}}
134 union pr30520a
{ int b
[]; } __attribute__((transparent_union
)); // expected-warning {{flexible array member 'b' in a union is a GNU extension}}
136 // expected-note@+1 2 {{forward declaration of 'struct stb'}}
137 union pr30520s
{ struct stb b
; } __attribute__((transparent_union
)); // expected-error {{field has incomplete type 'struct stb'}}
139 union pr30520s2
{ int *v
; struct stb b
; } __attribute__((transparent_union
)); // expected-error {{field has incomplete type 'struct stb'}}
141 typedef union __attribute__((__transparent_union__
)) {
151 void foo2(struct st
*s
) {