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-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3b458e6fa992b82049912ab5d49a6d81c50bb17f;p=platform%2Fupstream%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 e61a654..ab580f3 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 7d2b72c..0278779 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;