Taints the non-acquire RMW's store address with the load part
[oota-llvm.git] / test / CodeGen / AMDGPU / selectcc-icmp-select-float.ll
1 ; RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s
2
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
8
9 define 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
16 }