From af0c51ac87ab2a87caa03fa108f0d164987a2764 Mon Sep 17 00:00:00 2001 From: Ben Cheng Date: Thu, 28 Mar 2013 11:14:20 -0700 Subject: [GCC 4.8] Initial check-in of GCC 4.8.0 Change-Id: I0719d8a6d0f69b367a6ab6f10eb75622dbf12771 --- .../testsuite/gcc.target/i386/avx-vandnps-256-1.c | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 gcc-4.8/gcc/testsuite/gcc.target/i386/avx-vandnps-256-1.c (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/avx-vandnps-256-1.c') diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/avx-vandnps-256-1.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/avx-vandnps-256-1.c new file mode 100644 index 000000000..7b5a3dbe8 --- /dev/null +++ b/gcc-4.8/gcc/testsuite/gcc.target/i386/avx-vandnps-256-1.c @@ -0,0 +1,28 @@ +/* { dg-do run } */ +/* { dg-require-effective-target avx } */ +/* { dg-options "-O2 -mavx" } */ + +#include "avx-check.h" + +void static +avx_test (void) +{ + int i; + union256 u, s1, s2; + int source1[8]={34545, 95567, 23443, 5675, 2323, 67, 2345, 45667}; + int source2[8]={674, 57897, 93459, 45624, 54674, 1237, 67436, 79608}; + int d[8]; + int e[8]; + + s1.x = _mm256_loadu_ps ((float *)source1); + s2.x = _mm256_loadu_ps ((float *)source2); + u.x = _mm256_andnot_ps (s1.x, s2.x); + + _mm256_storeu_ps ((float *)d, u.x); + + for (i = 0; i < 8; i++) + e[i] = (~source1[i]) & source2[i]; + + if (checkVi (d, e, 8)) + abort (); +} -- cgit v1.2.3