1 // PR c++/21454
2 // Test whether A is put into .rodata section on platforms
3 // that have it.
4 // { dg-do compile }
5 
6 const int a[] __attribute__ ((__used__)) = { 0, 1, 2, 3 };
7 
8 // The MMIX port always switches to the .data section at the end of a file.
9 // { dg-final { scan-assembler-not "\\.data(?!\\.rel\\.ro)" { xfail powerpc*-*-aix* mmix-*-* } } }
10