mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-04 21:30:49 +00:00
16 lines
376 B
LLVM
16 lines
376 B
LLVM
|
; RUN: llc < %s -fast-isel -fast-isel-abort -march=arm
|
||
|
|
||
|
; Very basic fast-isel functionality.
|
||
|
|
||
|
define i32 @add(i32 %a, i32 %b) nounwind ssp {
|
||
|
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
|
||
|
}
|