1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

13 lines
328 B
LLVM
Raw Normal View History

; RUN: llc < %s -mtriple=arm-linux-gnu | FileCheck %s
2008-02-17 20:02:20 +00:00
define void @f(i32 %a) {
entry:
; CHECK: add r11, sp, #8
2008-02-17 20:02:20 +00:00
%tmp = alloca i8, i32 %a ; <i8*> [#uses=1]
call void @g( i8* %tmp, i32 %a, i32 1, i32 2, i32 3 )
ret void
; CHECK: sub sp, r11, #8
}
2008-02-17 20:02:20 +00:00
declare void @g(i8*, i32, i32, i32, i32)