diff options
author | Andy Hutchinson <hutchinsonandy@aim.com> | 2008-05-21 00:01:30 +0000 |
---|---|---|
committer | Andy Hutchinson <hutchinsonandy@gcc.gnu.org> | 2008-05-21 00:01:30 +0000 |
commit | b348936e59deb981e3ceb1c6f66ff126aca690d7 (patch) | |
tree | 771c12b104846f383640a5ad2944ac02efea476d | |
parent | 77b4cc3594a80157608a23062fe548bce7743673 (diff) | |
download | gcc-b348936e59deb981e3ceb1c6f66ff126aca690d7.zip gcc-b348936e59deb981e3ceb1c6f66ff126aca690d7.tar.gz gcc-b348936e59deb981e3ceb1c6f66ff126aca690d7.tar.bz2 |
* gcc.dg/array-quals-1.c: xfail read only section check for avr target.
From-SVN: r135695
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/array-quals-1.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 2ade286..a397292 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2008-05-20 Andy Hutchinson <hutchinsonandy@aim.com> + * gcc.dg/array-quals-1.c: xfail read only section + check for avr target. + +2008-05-20 Andy Hutchinson <hutchinsonandy@aim.com> + PR testsuite/34889 * gcc.c-torture/execute/builtins/pr23484-chk.c : Correct test for 16bit int target. diff --git a/gcc/testsuite/gcc.dg/array-quals-1.c b/gcc/testsuite/gcc.dg/array-quals-1.c index 514daf8..fc5398b 100644 --- a/gcc/testsuite/gcc.dg/array-quals-1.c +++ b/gcc/testsuite/gcc.dg/array-quals-1.c @@ -4,7 +4,7 @@ /* Origin: Joseph Myers <jsm@polyomino.org.uk> */ /* { dg-do compile } */ /* The MMIX port always switches to the .data section at the end of a file. */ -/* { dg-final { scan-assembler-not "\\.data(?!\\.rel\\.ro)" { xfail powerpc*-*-aix* mmix-*-* x86_64-*-mingw* } } } */ +/* { dg-final { scan-assembler-not "\\.data(?!\\.rel\\.ro)" { xfail powerpc*-*-aix* mmix-*-* x86_64-*-mingw* avr-*-*} } } */ static const int a[2] = { 1, 2 }; const int a1[2] = { 1, 2 }; typedef const int ci; |