URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [i386/] [avx-vmovups-256-1.c] - Rev 704
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-require-effective-target avx } */ /* { dg-options "-O2 -mavx" } */ #include "avx-check.h" static __m256 __attribute__((noinline, unused)) test (float *e) { return _mm256_loadu_ps (e); } void static avx_test (void) { union256 u; float e [8] = {24.43, 68.346, 43.35, 546.46, 46.79, 82.78, 82.7, 9.4}; u.x = test (e); if (check_union256 (u, e)) abort (); }
Go to most recent revision | Compare with Previous | Blame | View Log