[AArch64] Fix SVE testsuite failures for ILP32 (PR 83846)
[official-gcc.git] / gcc / testsuite / gcc.dg / pr43084.c
blob2afc48444a1731a0560cfc0a2c56b3c8715fabbd
1 /* PR debug/43084 */
2 /* { dg-do compile } */
3 /* { dg-options "-O1 -fipa-struct-reorg -fwhole-program -fcompare-debug" } */
4 /* { dg-xfail-if "" { powerpc-ibm-aix* } } */
6 struct S
8 int a;
9 };
11 int
12 main ()
14 struct S s;
15 struct S *p = &s;
16 return p->a;