~pali/+junk/llvm-toolchain-3.7

« back to all changes in this revision

Viewing changes to test/CodeGen/AMDGPU/icmp-select-sete-reverse-args.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
;Test that a select with reversed True/False values is correctly lowered
 
4
;to a SETNE_INT.  There should only be one SETNE_INT instruction.
 
5
 
 
6
;CHECK: SETNE_INT T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
 
7
;CHECK-NOT: SETNE_INT
 
8
 
 
9
define void @test(i32 addrspace(1)* %out, i32 addrspace(1)* %in) {
 
10
entry:
 
11
  %0 = load i32, i32 addrspace(1)* %in
 
12
  %arrayidx1 = getelementptr inbounds i32, i32 addrspace(1)* %in, i32 1
 
13
  %1 = load i32, i32 addrspace(1)* %arrayidx1
 
14
  %cmp = icmp eq i32 %0, %1
 
15
  %value = select i1 %cmp, i32 0, i32 -1
 
16
  store i32 %value, i32 addrspace(1)* %out
 
17
  ret void
 
18
}