1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-26 06:22:56 +02:00
llvm-mirror/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 00:37:07 +02:00
define i32 @f1(i32 %a) {
; CHECK: f1:
; CHECK: rsbs r0, r0, #0
2009-06-27 00:37:07 +02:00
%tmp = sub i32 0, %a
ret i32 %tmp
}