From: Alan Modra Date: Fri, 9 Jan 2004 00:28:29 +0000 (+0000) Subject: * gcc.dg/array-quals-1.c: Accept .data.rel.ro. X-Git-Tag: releases/gcc-3.4.0~1185 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3b458e6fa992b82049912ab5d49a6d81c50bb17f;p=thirdparty%2Fgcc.git * gcc.dg/array-quals-1.c: Accept .data.rel.ro. From-SVN: r75565 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index e61a65482f1d..ab580f3c0cb1 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2004-01-09 Alan Modra + + * gcc.dg/array-quals-1.c: Accept .data.rel.ro. + 2004-01-08 Eric Botcazou * ada/acats/run_acats: Treat 'gnatchop' the same way diff --git a/gcc/testsuite/gcc.dg/array-quals-1.c b/gcc/testsuite/gcc.dg/array-quals-1.c index 7d2b72c6b980..027877922046 100644 --- a/gcc/testsuite/gcc.dg/array-quals-1.c +++ b/gcc/testsuite/gcc.dg/array-quals-1.c @@ -3,7 +3,7 @@ all should end up in a read-only section. PR c/12165. */ /* Origin: Joseph Myers */ /* { 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;