1  /* { dg-do run } */
       2  /* { dg-require-effective-target avx } */
       3  /* { dg-options "-O2 -mavx" } */
       4  
       5  #include "avx-check.h"
       6  
       7  static __m256i
       8  __attribute__ ((noinline, unused))
       9  test (__m256i *p)
      10  {
      11    return _mm256_load_si256 (p);
      12  }
      13  
      14  void static
      15  avx_test (void)
      16  {
      17    union256i_d u;
      18    int e [8] __attribute__ ((aligned (32))) = {23, 67, 53, 6, 4, 6, 85, 234};
      19  
      20    u.x = test ((__m256i *)e);
      21  
      22    if (check_union256i_d (u, e))
      23      abort ();
      24  }