xref: /llvm-project/llvm/test/CodeGen/X86/2011-09-21-setcc-bug.ll (revision 2f448bf509432c1a19ec46ab8cbc7353c03c6280)
1; RUN: llc < %s -mtriple=x86_64-- -mcpu=corei7 -mattr=+sse4.1
2
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 %k
7   %B = load <4 x i8>, ptr %y
8   %C = load <4 x double>, ptr %A0
9   %D= load <4 x double>, ptr %A1
10   %M = icmp uge <4 x i8> %A, %B
11   %T = select <4 x i1> %M, <4 x double> %C, <4 x double> %D
12   store <4 x double> %T, ptr undef
13   ret void
14}
15
16
17define void @load_256_i8(ptr %k, ptr %y, ptr %A1, ptr %A0)  {
18   %A = load <256 x i8>, ptr %k
19   %B = load <256 x i8>, ptr %y
20   %C = load <256 x double>, ptr %A0
21   %D= load <256 x double>, ptr %A1
22   %M = icmp uge <256 x i8> %A, %B
23   %T = select <256 x i1> %M, <256 x double> %C, <256 x double> %D
24   store <256 x double> %T, ptr undef
25   ret void
26}
27
28