OSDN Git Service

Add a testcase for PR target/44180.
authorhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 14 Oct 2010 02:11:59 +0000 (02:11 +0000)
committerhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 14 Oct 2010 02:11:59 +0000 (02:11 +0000)
2010-10-13  H.J. Lu  <hongjiu.lu@intel.com>

PR target/44180
* gcc.target/i386/pr44180.c: New.

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

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr44180.c [new file with mode: 0644]

index e7d06f0..5e10ba5 100644 (file)
@@ -1,3 +1,8 @@
+2010-10-13  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR target/44180
+       * gcc.target/i386/pr44180.c: New.
+
 2010-10-13  Jason Merrill  <jason@redhat.com>
 
        * g++.dg/template/canon-type-8.C: New.
diff --git a/gcc/testsuite/gcc.target/i386/pr44180.c b/gcc/testsuite/gcc.target/i386/pr44180.c
new file mode 100644 (file)
index 0000000..b27b7ba
--- /dev/null
@@ -0,0 +1,35 @@
+/* { dg-do run } */
+/* { dg-require-effective-target avx } */
+/* { dg-options "-O2 -ftree-vectorize -mavx" } */
+
+#include "avx-check.h"
+
+#define N 16
+
+float b[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45};
+float c[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
+float d[N] = {0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30};
+
+static void
+__attribute__ ((noinline))
+avx_test ()
+{
+  int i;
+  float a[N];
+
+  /* Strided access. Vectorizable on platforms that support load of strided 
+     accesses (extract of even/odd vector elements).  */
+  for (i = 0; i < N/2; i++)
+    {
+      a[i] = b[2*i+1] * c[2*i+1] - b[2*i] * c[2*i];
+      d[i] = b[2*i] * c[2*i+1] + b[2*i+1] * c[2*i];
+    }
+
+  /* Check results.  */
+  for (i = 0; i < N/2; i++)
+    {
+      if (a[i] != b[2*i+1] * c[2*i+1] - b[2*i] * c[2*i]
+         || d[i] != b[2*i] * c[2*i+1] + b[2*i+1] * c[2*i])
+       abort();
+    }
+}