[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / X86 / pr20088.ll
blob75d1959a5af44d7438ae453a54f750c0900fb357
1 ; RUN: llc < %s -mtriple=x86_64-- -mattr=+avx | FileCheck %s
3 declare <16 x i8> @llvm.x86.sse41.pblendvb(<16 x i8>, <16 x i8>, <16 x i8>)
5 define <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;