diff options
author | Andy Hutchinson <hutchinsonandy@aim.com> | 2008-06-18 22:41:32 +0000 |
---|---|---|
committer | Andy Hutchinson <hutchinsonandy@gcc.gnu.org> | 2008-06-18 22:41:32 +0000 |
commit | 9e0c1ff33bb231edf46502255b4f057f3c83b558 (patch) | |
tree | 12d2ea1ca1d6538e8b8fc617f4a24a77bf2b7922 /gcc | |
parent | 458426d9347028e7e7bbea61c4a78d40639f02b6 (diff) | |
download | gcc-9e0c1ff33bb231edf46502255b4f057f3c83b558.zip gcc-9e0c1ff33bb231edf46502255b4f057f3c83b558.tar.gz gcc-9e0c1ff33bb231edf46502255b4f057f3c83b558.tar.bz2 |
* gcc.dg/tree-ssa/loop-35.c: xfail avr target. Add new avr specific tests.
From-SVN: r136925
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/tree-ssa/loop-35.c | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 8b38601..a0817e8 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2008-06-18 Andy Hutchinson <hutchinsonandy@aim.com> + * gcc.dg/tree-ssa/loop-35.c: xfail avr target. Add new avr specific + tests. + +2008-06-18 Andy Hutchinson <hutchinsonandy@aim.com> + * gcc.dg/tree-ssa/forwprop-6.c: Use long or int to match size of float. Otherwise error. * gcc.dg/tree-ssa/ssa-fre-7.c: Ditto. diff --git a/gcc/testsuite/gcc.dg/tree-ssa/loop-35.c b/gcc/testsuite/gcc.dg/tree-ssa/loop-35.c index ce6ba28..e1bdde2 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/loop-35.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/loop-35.c @@ -59,6 +59,7 @@ void test4(struct a *A, unsigned long b) A[b+1].Y += i; } } - -/* { dg-final { scan-tree-dump-times "Executing store motion of" 8 "lim" } } */ +/* long index not hoisted for avr target PR 36561 */ +/* { dg-final { scan-tree-dump-times "Executing store motion of" 8 "lim" { xfail { "avr-*-*" } } } } */ +/* { dg-final { scan-tree-dump-times "Executing store motion of" 6 "lim" { target { "avr-*-*" } } } } */ /* { dg-final { cleanup-tree-dump "lim" } } */ |