brintos

brintos / llvm-project-archived public Read only

0
0
Text · 418 B · 75d1959 Raw
10 lines · plain
1; RUN: llc < %s -mtriple=x86_64-- -mattr=+avx | FileCheck %s2 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: vpblendvb7  %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