brintos

brintos / llvm-project-archived public Read only

0
0
Text · 799 B · 9bfdefb Raw
28 lines · plain
1; RUN: llc < %s -mtriple=x86_64-- -mcpu=corei7 -mattr=+sse4.12 3; Make sure we are not crashing on this code.4 5define void @load_4_i8(ptr %k, ptr %y, ptr %A1, ptr %A0)  {6   %A = load <4 x i8>, ptr %k7   %B = load <4 x i8>, ptr %y8   %C = load <4 x double>, ptr %A09   %D= load <4 x double>, ptr %A110   %M = icmp uge <4 x i8> %A, %B11   %T = select <4 x i1> %M, <4 x double> %C, <4 x double> %D12   store <4 x double> %T, ptr undef13   ret void14}15 16 17define void @load_256_i8(ptr %k, ptr %y, ptr %A1, ptr %A0)  {18   %A = load <256 x i8>, ptr %k19   %B = load <256 x i8>, ptr %y20   %C = load <256 x double>, ptr %A021   %D= load <256 x double>, ptr %A122   %M = icmp uge <256 x i8> %A, %B23   %T = select <256 x i1> %M, <256 x double> %C, <256 x double> %D24   store <256 x double> %T, ptr undef25   ret void26}27 28