llvm-6502/test/CodeGen/Thumb2/thumb2-add3.ll
David Goodwin 2634e98a93 Add Thumb-2 tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74295 91177308-0d34-0410-b5e6-96231b3b80d8
2009-06-26 18:10:30 +00:00

9 lines
217 B
LLVM

; RUN: llvm-as < %s | llc | grep {addw\\W*r\[0-9\],\\W*r\[0-9\],\\W*#\[0-9\]*} | grep {#4095} | Count 1
target triple = "thumbv7-apple-darwin"
define i32 @f1(i32 %a) {
%tmp = add i32 %a, 4095
ret i32 %tmp
}