aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx2-vpblendd128-1.c
blob: a3fea9554e1fe84a5ddadece42aab5f47de75b4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "-mavx2 -O2" } */
/* { dg-final { scan-assembler "vpblendd\[ \\t\]+\[^\n\]*" } } */

#include <immintrin.h>

__m128i x;
__m128i y;

void extern
avx2_test (void)
{
  x = _mm_blend_epi32 (x, y, 13);
}