mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
22b01f0d76
pass in the first place and was masked by earlier failures not warning and aborting the block. llvm-svn: 119184
16 lines
448 B
LLVM
16 lines
448 B
LLVM
; RUN: llc < %s -O0 -fast-isel-abort -mtriple=armv7-apple-darwin
|
|
; RUN: llc < %s -O0 -fast-isel-abort -mtriple=thumbv7-apple-darwin
|
|
|
|
; Very basic fast-isel functionality.
|
|
|
|
define i32 @add(i32 %a, i32 %b) nounwind {
|
|
entry:
|
|
%a.addr = alloca i32, align 4
|
|
%b.addr = alloca i32, align 4
|
|
store i32 %a, i32* %a.addr
|
|
store i32 %b, i32* %b.addr
|
|
%tmp = load i32* %a.addr
|
|
%tmp1 = load i32* %b.addr
|
|
%add = add nsw i32 %tmp, %tmp1
|
|
ret i32 %add
|
|
} |