llvm-6502/test/CodeGen/Thumb2/thumb2-add3.ll
Daniel Dunbar d2deed0091 More spelling Count as count.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74306 91177308-0d34-0410-b5e6-96231b3b80d8
2009-06-26 18:35:07 +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
}