1; RUN: llc < %s -march=x86-64 -mattr=+avx | FileCheck %s
2
3declare <16 x i8> @llvm.x86.sse41.pblendvb(<16 x i8>, <16 x i8>, <16 x i8>)
4
5define <16 x i8> @foo(<16 x i8> %x) {
6; CHECK: vpblendvb
7  %res = call <16 x i8> @llvm.x86.sse41.pblendvb(<16 x i8> zeroinitializer, <16 x i8> <i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1, i8 1>, <16 x i8> %x)
8  ret <16 x i8> %res;
9}
10