bb-slp-32.c: Adjust testcase.
authorRichard Biener <rguenther@suse.de>
Mon, 16 Nov 2015 08:57:42 +0000 (08:57 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Mon, 16 Nov 2015 08:57:42 +0000 (08:57 +0000)
2015-11-16  Richard Biener  <rguenther@suse.de>

* gcc.dg/vect/bb-slp-32.c: Adjust testcase.

From-SVN: r230405

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/vect/bb-slp-32.c

index 5a1997e5d68da81016a7bed67f828ca7d3c8edd2..cb3cc6dea60daa57b17169903424a7d6b49b857f 100644 (file)
@@ -1,3 +1,7 @@
+2015-11-16  Richard Biener  <rguenther@suse.de>
+
+       * gcc.dg/vect/bb-slp-32.c: Adjust testcase.
+
 2015-11-15  Paul Thomas  <pault@gcc.gnu.org>
 
        PR fortran/50221
index bc0f8377ea73a87661465477355c3c7f7f957f9c..41bbf3521565025414ba8db5ad5e0ac9200d4dc3 100644 (file)
@@ -3,17 +3,17 @@
 /* { dg-additional-options "-fvect-cost-model=dynamic" } */
 
 void bar (int *);
-int foo (int *p)
+int foo (int *p, int a, int b)
 {
   int x[4];
   int tem0, tem1, tem2, tem3;
-  tem0 = p[0] + 1;
+  tem0 = p[0] + 1 + a;
   x[0] = tem0;
-  tem1 = p[1] + 2;
+  tem1 = p[1] + 2 + b;
   x[1] = tem1;
-  tem2 = p[2] + 3;
+  tem2 = p[2] + 3 + b;
   x[2] = tem2;
-  tem3 = p[3] + 4;
+  tem3 = p[3] + 4 + a;
   x[3] = tem3;
   bar (x);
   return tem0 + tem1 + tem2 + tem3;