Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gcc.dg / pr101836_5.c
blob0ad8bbf693cefb304983aa0094b1955f4f45e95c
1 /* -fno-strict-flex-arrays is aliased to -fstrict-flex-arrays=0,
2 all trailing arrays are treated as flexible array. */
3 /* PR tree-optimization/101836 */
4 /* { dg-do run } */
5 /* { dg-options "-O2 -fno-strict-flex-arrays" } */
7 #include <stdio.h>
9 #define expect(p, _v) do { \
10 size_t v = _v; \
11 if (p == v) \
12 printf("ok: %s == %zd\n", #p, p); \
13 else \
14 { \
15 printf("WAT: %s == %zd (expected %zd)\n", #p, p, v); \
16 __builtin_abort (); \
17 } \
18 } while (0);
20 struct trailing_array_1 {
21 int a;
22 int b;
23 int c[4];
26 struct trailing_array_2 {
27 int a;
28 int b;
29 int c[1];
32 struct trailing_array_3 {
33 int a;
34 int b;
35 int c[0];
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), -1);
50 expect(__builtin_object_size(trailing_1->c, 1), -1);
51 expect(__builtin_object_size(trailing_0->c, 1), -1);
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 return 0;