diff options
author | Ira Rosen <irar@il.ibm.com> | 2009-03-10 17:29:21 +0000 |
---|---|---|
committer | Ira Rosen <irar@gcc.gnu.org> | 2009-03-10 17:29:21 +0000 |
commit | 480a5329ae70a16312040c1d14650b2c878e05b4 (patch) | |
tree | d931c3c666538f445fb620318da56e2bd7334e14 | |
parent | 23b27c81989ab5ec47ab367cc65a1b6ab55451e0 (diff) | |
download | gcc-480a5329ae70a16312040c1d14650b2c878e05b4.zip gcc-480a5329ae70a16312040c1d14650b2c878e05b4.tar.gz gcc-480a5329ae70a16312040c1d14650b2c878e05b4.tar.bz2 |
re PR testsuite/39422 (Failing SPU vectorizer testcases)
PR tree-optimization/39422
* gcc.dg/vect/costmodel/spu/costmodel-vect-76b.c: Move
constant array with static initialization to global memory.
* gcc.dg/vect/costmodel/spu/costmodel-vect-76c.c: Likewise.
From-SVN: r144754
-rw-r--r-- | gcc/testsuite/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/costmodel/spu/costmodel-vect-76b.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/costmodel/spu/costmodel-vect-76c.c | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5b3e8a1..c418e2b 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2009-03-10 Ira Rosen <irar@il.ibm.com> + + PR tree-optimization/39422 + * gcc.dg/vect/costmodel/spu/costmodel-vect-76b.c: Move + constant array with static initialization to global memory. + * gcc.dg/vect/costmodel/spu/costmodel-vect-76c.c: Likewise. + 2009-03-10 Hariharan Sandanagobalane <hariharan@picochip.com> * gcc.c-torture/execute/pr39339.c: Bitfield sizes changed to avoid diff --git a/gcc/testsuite/gcc.dg/vect/costmodel/spu/costmodel-vect-76b.c b/gcc/testsuite/gcc.dg/vect/costmodel/spu/costmodel-vect-76b.c index 3aac4c9..4969a31 100644 --- a/gcc/testsuite/gcc.dg/vect/costmodel/spu/costmodel-vect-76b.c +++ b/gcc/testsuite/gcc.dg/vect/costmodel/spu/costmodel-vect-76b.c @@ -11,12 +11,12 @@ more involved than just an ssa_name. */ int ib[N+OFF] __attribute__ ((__aligned__(16))) = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10, 0, 1, 3, 5, 7, 11, 13, 17}; +int ic[N+OFF] = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10, 0, 1, 3, 5, 7, 11, 13, 17}; int main1 (int *pib) { int i; int ia[N+OFF]; - int ic[N+OFF] = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10, 0, 1, 3, 5, 7, 11, 13, 17}; for (i = OFF; i < N; i++) { diff --git a/gcc/testsuite/gcc.dg/vect/costmodel/spu/costmodel-vect-76c.c b/gcc/testsuite/gcc.dg/vect/costmodel/spu/costmodel-vect-76c.c index f6127ba..573d8aa 100644 --- a/gcc/testsuite/gcc.dg/vect/costmodel/spu/costmodel-vect-76c.c +++ b/gcc/testsuite/gcc.dg/vect/costmodel/spu/costmodel-vect-76c.c @@ -11,12 +11,12 @@ more involved than just an ssa_name. */ int ib[N+OFF] __attribute__ ((__aligned__(16))) = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10}; +int ic[N+OFF] = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10}; int main1 (int *pib) { int i; int ia[N+OFF]; - int ic[N+OFF] = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10}; for (i = OFF; i < N; i++) { |