]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR testsuite/39422 (Failing SPU vectorizer testcases)
authorIra Rosen <irar@il.ibm.com>
Tue, 10 Mar 2009 17:29:21 +0000 (17:29 +0000)
committerIra Rosen <irar@gcc.gnu.org>
Tue, 10 Mar 2009 17:29:21 +0000 (17:29 +0000)
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

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/vect/costmodel/spu/costmodel-vect-76b.c
gcc/testsuite/gcc.dg/vect/costmodel/spu/costmodel-vect-76c.c

index 5b3e8a1a64cc0a3e37d18920f3fb4746c0ffc997..c418e2be3580072424ab934fe8536a263ed828c9 100644 (file)
@@ -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
index 3aac4c9000595d311f20c0d1fb36fba24df18e57..4969a31e0ab15dd42b36219e92eac0b055951b56 100644 (file)
    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++)
     {
index f6127ba873ba9d6c83865f42922fa2659debdee4..573d8aacdd4c7d82b50b0f2bd9b87dd05b3eac84 100644 (file)
    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++)
     {