aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Thumb2/thumb2-cmp2.ll
blob: c1d90b9487a8f65b66f2c068d890fc444459f596 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {cmp\\W*r\[0-9\],\\W*r\[0-9\]} | Count 2

define i1 @f1(i32 %a, i32 %b) {
    %tmp = icmp ne i32 %a, %b
    ret i1 %tmp
}

define i1 @f2(i32 %a, i32 %b) {
    %tmp = icmp eq i32 %a, %b
    ret i1 %tmp
}