aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Thumb2/thumb2-sbc.ll
blob: ad962919edcee4ef1b577c9752d4a856555810c0 (plain)
1
2
3
4
5
6
7
8
; RUN: llc < %s -march=thumb -mattr=+thumb2 | FileCheck %s

define i64 @f1(i64 %a, i64 %b) {
; CHECK: f1:
; CHECK: subs r0, r0, r2
    %tmp = sub i64 %a, %b
    ret i64 %tmp
}