~pali/+junk/llvm-toolchain-3.7

« back to all changes in this revision

Viewing changes to test/CodeGen/AMDGPU/selectcc-icmp-select-float.ll

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2015-07-15 17:51:08 UTC
  • Revision ID: package-import@ubuntu.com-20150715175108-l8mynwovkx4zx697
Tags: upstream-3.7~+rc2
ImportĀ upstreamĀ versionĀ 3.7~+rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
}