summaryrefslogtreecommitdiff
path: root/test/CodeGen/MBlaze/select.ll
blob: c4bdbc4014aa3ef125dbeb28676a82a58b1a0cb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; Ensure that the select instruction is supported and is lowered to 
; some sort of branch instruction.
;
; RUN: llc < %s -march=mblaze | FileCheck %s

define i32 @testsel(i32 %a, i32 %b)
{
    ; CHECK-LABEL:        testsel:
    %tmp.1 = icmp eq i32 %a, %b
    ; CHECK:        cmp
    %tmp.2 = select i1 %tmp.1, i32 %a, i32 %b
    ; CHECK:        {{bne|beq}}
    ret i32 %tmp.2
    ; CHECK:        rtsd
}