Silence -Wunused-variable in release builds.
[llvm/stm8.git] / test / CodeGen / MBlaze / select.ll
blob47a88a1e3c25c9263818472f19ea9bf4813660f0
1 ; Ensure that the select instruction is supported and is lowered to 
2 ; some sort of branch instruction.
4 ; RUN: llc < %s -march=mblaze | FileCheck %s
6 define i32 @testsel(i32 %a, i32 %b)
8     ; CHECK:        testsel:
9     %tmp.1 = icmp eq i32 %a, %b
10     ; CHECK:        cmp
11     %tmp.2 = select i1 %tmp.1, i32 %a, i32 %b
12     ; CHECK:        {{bne|beq}}
13     ret i32 %tmp.2
14     ; CHECK:        rtsd