(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
avx-loadu2-m128i-2.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2 -mavx" } */
       3  /* { dg-require-effective-target avx } */
       4  
       5  #include "avx-check.h"
       6  
       7  static void
       8  avx_test (void)
       9  {
      10    union256i_d u;
      11    int e[8] = { 1, -9, 13, -24, -18, 12, 0, 9 };
      12    int f[8] = { -24, -18, 12, 0, -9, 13, -24, -18 };
      13  
      14    u.x = _mm256_loadu2_m128i ((__m128i_u *) (e + 1), (__m128i_u *) (e + 3));
      15    if (check_union256i_d (u, f))
      16      abort ();
      17  }