blob: 86cb94b88de0c650bdb41790412b34d01df5dcaa [file] [log] [blame]
Eric Christopherdc3d8b82010-08-25 07:47:00 +00001; RUN: llc < %s -O0 -arm-fast-isel -fast-isel-abort -mtriple=armv7-apple-darwin
Eric Christophere8d274c2010-08-25 07:53:15 +00002; RUN: llc < %s -O0 -arm-fast-isel -fast-isel-abort -mtriple=thumbv7-apple-darwin
Eric Christopherab695882010-07-21 22:26:11 +00003
4; Very basic fast-isel functionality.
5
6define i32 @add(i32 %a, i32 %b) nounwind ssp {
7entry:
8 %a.addr = alloca i32, align 4
9 %b.addr = alloca i32, align 4
10 store i32 %a, i32* %a.addr
11 store i32 %b, i32* %b.addr
12 %tmp = load i32* %a.addr
13 %tmp1 = load i32* %b.addr
14 %add = add nsw i32 %tmp, %tmp1
15 ret i32 %add
16}