blob: e870ee891e664171eecab670acf7091f64b70423 [file] [log] [blame]
Tom Stellard75aadc22012-12-11 21:25:42 +00001; 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.
Vincent Lejeunef97af792013-05-02 21:52:30 +00005; CHECK: SETGT_INT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}, literal.x,
6; CHECK-NEXT: -1
Tom Stellard75aadc22012-12-11 21:25:42 +00007; Test a selectcc with i32 LHS/RHS and float True/False
8
9define void @test(float addrspace(1)* %out, i32 addrspace(1)* %in) {
10entry:
David Blaikiea79ac142015-02-27 21:17:42 +000011 %0 = load i32, i32 addrspace(1)* %in
Tom Stellard75aadc22012-12-11 21:25:42 +000012 %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}