URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [i386/] [avx-vbroadcastf128-256-1.c] - Rev 318
Compare with Previous | Blame | View Log
/* { 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; union128 s; float e [8]; s.x = _mm_set_ps(24.43, 68.346, 43.35, 546.46); u.x = _mm256_broadcast_ps (&s.x); for (i = 0; i < 4; i++) e[i+4] = e[i] = s.a[i]; if (check_union256 (u, e)) abort (); }