PR tree-optimization/39422
authorirar <irar@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 10 Mar 2009 17:29:21 +0000 (17:29 +0000)
committerirar <irar@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 10 Mar 2009 17:29:21 +0000 (17:29 +0000)
* 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.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@144754 138bc75d-0d04-0410-961f-82ee72b054a4

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 5b3e8a1..c418e2b 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 3aac4c9..4969a31 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 f6127ba..573d8aa 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++)
     {