llvm-project/llvm/test/CodeGen/Thumb2/thumb2-neg.ll

9 lines
167 B
LLVM
Raw Normal View History

; RUN: llc < %s -march=thumb -mattr=+thumb2 | FileCheck %s
2009-06-27 06:37:07 +08:00
define i32 @f1(i32 %a) {
; CHECK: f1:
; CHECK: rsbs r0, r0, #0
2009-06-27 06:37:07 +08:00
%tmp = sub i32 0, %a
ret i32 %tmp
}