1 ; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
2 ; RUN: llc < %s -march=nvptx64 -mcpu=sm_20 | FileCheck %s
3 ; RUN: %if ptxas && !ptxas-12.0 %{ llc < %s -march=nvptx -mcpu=sm_20 | %ptxas-verify %}
4 ; RUN: %if ptxas %{llc < %s -march=nvptx64 -mcpu=sm_20 | %ptxas-verify %}
6 ; This test makes sure that vector selects are scalarized by the type legalizer.
7 ; If not, type legalization will fail.
9 ; CHECK-LABEL: .visible .func foo(
10 define void @foo(ptr addrspace(1) %def_a, ptr addrspace(1) %def_b, ptr addrspace(1) %def_c) {
12 ; CHECK: ld.global.v2.u32
13 ; CHECK: ld.global.v2.u32
14 ; CHECK: ld.global.v2.u32
15 %tmp4 = load <2 x i32>, ptr addrspace(1) %def_a
16 %tmp6 = load <2 x i32>, ptr addrspace(1) %def_c
17 %tmp8 = load <2 x i32>, ptr addrspace(1) %def_b
20 %0 = icmp sge <2 x i32> %tmp4, zeroinitializer
23 %cond = select <2 x i1> %0, <2 x i32> %tmp6, <2 x i32> %tmp8
24 ; CHECK: st.global.v2.u32
25 store <2 x i32> %cond, ptr addrspace(1) %def_c