Home | History | Annotate | Download | only in R600
      1 ; RUN: llc -march=r600 -mcpu=cypress < %s | FileCheck -check-prefix=EG %s
      2 ; XFAIL: *
      3 
      4 ; EG-LABEL: @and_setcc_setcc_i32
      5 ; EG: AND_INT
      6 ; EG-NEXT: SETE_INT
      7 define void @and_setcc_setcc_i32(i32 addrspace(1)* %out, i32 %a, i32 %b) {
      8   %cmp1 = icmp eq i32 %a, -1
      9   %cmp2 = icmp eq i32 %b, -1
     10   %and = and i1 %cmp1, %cmp2
     11   %ext = sext i1 %and to i32
     12   store i32 %ext, i32 addrspace(1)* %out, align 4
     13   ret void
     14 }
     15 
     16 ; EG-LABEL: @and_setcc_setcc_v4i32
     17 ; EG: AND_INT
     18 ; EG: AND_INT
     19 ; EG: SETE_INT
     20 ; EG: AND_INT
     21 ; EG: SETE_INT
     22 ; EG: AND_INT
     23 ; EG: SETE_INT
     24 define void @and_setcc_setcc_v4i32(<4 x i32> addrspace(1)* %out, <4 x i32> %a, <4 x i32> %b) {
     25   %cmp1 = icmp eq <4 x i32> %a, <i32 -1, i32 -1, i32 -1, i32 -1>
     26   %cmp2 = icmp eq <4 x i32> %b, <i32 -1, i32 -1, i32 -1, i32 -1>
     27   %and = and <4 x i1> %cmp1, %cmp2
     28   %ext = sext <4 x i1> %and to <4 x i32>
     29   store <4 x i32> %ext, <4 x i32> addrspace(1)* %out, align 4
     30   ret void
     31 }