Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / strict-flex-array-3.c
blobf74ed96c751c04947752298cb39ad8ed3ed48ba1
1 /* test the combination of attribute strict_flex_array and option
2 -fstrict-flex-arrays: when both attribute and option specified,
3 attribute will have higher priority. */
4 /* { dg-do run } */
5 /* { dg-options "-O2 -fstrict-flex-arrays=0" } */
7 #include "builtin-object-size-common.h"
9 #define expect(p, _v) do { \
10 size_t v = _v; \
11 if (p == v) \
12 __builtin_printf ("ok: %s == %zd\n", #p, p); \
13 else \
14 { \
15 __builtin_printf ("WAT: %s == %zd (expected %zd)\n", #p, p, v); \
16 FAIL (); \
17 } \
18 } while (0);
20 struct trailing_array_1 {
21 int a;
22 int b;
23 int c[4] __attribute__ ((strict_flex_array (1)));
26 struct trailing_array_2 {
27 int a;
28 int b;
29 int c[1] __attribute__ ((strict_flex_array (2)));
32 struct trailing_array_3 {
33 int a;
34 int b;
35 int c[0] __attribute__ ((strict_flex_array (3)));
37 struct trailing_array_4 {
38 int a;
39 int b;
40 int c[];
43 void __attribute__((__noinline__)) stuff(
44 struct trailing_array_1 *normal,
45 struct trailing_array_2 *trailing_1,
46 struct trailing_array_3 *trailing_0,
47 struct trailing_array_4 *trailing_flex)
49 expect(__builtin_object_size(normal->c, 1), 16);
50 expect(__builtin_object_size(trailing_1->c, 1), 4);
51 expect(__builtin_object_size(trailing_0->c, 1), 0);
52 expect(__builtin_object_size(trailing_flex->c, 1), -1);
55 int main(int argc, char *argv[])
57 stuff((void *)argv[0], (void *)argv[0], (void *)argv[0], (void *)argv[0]);
59 DONE ();