1 /* Test for various combinations of const, arrays and typedefs:
2 should never actually get const on the final array type, but
3 all should end up in a read-only section. PR c/12165. */
4 /* Origin: Joseph Myers <jsm@polyomino.org.uk> */
5 /* { dg-do compile } */
6 /* { dg-final { scan-assembler-not "\\.data(?!\\.rel\\.ro)" { xfail powerpc*-*-aix* } } } */
7 static const int a
[2] = { 1, 2 };
8 const int a1
[2] = { 1, 2 };
10 static ci b
[2] = { 3, 4 };
13 static const ia c
= { 5, 6 };
14 const ia c1
= { 5, 6 };
15 typedef const int cia
[2];
16 static cia d
= { 7, 8 };
18 static cia e
[2] = { { 1, 2 }, { 3, 4 } };
19 cia e1
[2] = { { 1, 2 }, { 3, 4 } };