[ARM] Fixup the creation of VPT blocks
[llvm-core.git] / test / CodeGen / AMDGPU / selectcc-icmp-select-float.ll
blob7af5478600bb99af6f07eb2a807f8d7970bfb831
1 ; RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s
3 ; Note additional optimizations may cause this SGT to be replaced with a
4 ; CND* instruction.
5 ; CHECK: SETGT_INT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}, literal.x,
6 ; CHECK-NEXT: -1
7 ; Test a selectcc with i32 LHS/RHS and float True/False
9 define amdgpu_kernel void @test(float addrspace(1)* %out, i32 addrspace(1)* %in) {
10 entry:
11   %0 = load i32, i32 addrspace(1)* %in
12   %1 = icmp sge i32 %0, 0
13   %2 = select i1 %1, float 1.0, float 0.0
14   store float %2, float addrspace(1)* %out
15   ret void