* gcc.dg/array-quals-1.c: Accept .data.rel.ro.

From-SVN: r75565
This commit is contained in:
Alan Modra 2004-01-09 00:28:29 +00:00 committed by Alan Modra
parent dd0dddc663
commit 3b458e6fa9
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-01-09 Alan Modra <amodra@bigpond.net.au>
* gcc.dg/array-quals-1.c: Accept .data.rel.ro.
2004-01-08 Eric Botcazou <ebotcazou@libertysurf.fr>
* ada/acats/run_acats: Treat 'gnatchop' the same way

View File

@ -3,7 +3,7 @@
all should end up in a read-only section. PR c/12165. */
/* Origin: Joseph Myers <jsm@polyomino.org.uk> */
/* { dg-do compile } */
/* { dg-final { scan-assembler-not "\\.data" } } */
/* { dg-final { scan-assembler-not "\\.data(?!\\.rel\\.ro)" } } */
static const int a[2] = { 1, 2 };
const int a1[2] = { 1, 2 };
typedef const int ci;