summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/alloca.ll
blob: f7e450f59324255f799fa3785306054dbc978f1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: llvm-as < %s | llc -march=arm -mtriple=arm-linux-gnu | \
; RUN:   grep {mov r11, sp}
; RUN: llvm-as < %s | llc -march=arm -mtriple=arm-linux-gnu | \
; RUN:   grep {mov sp, r11}

define void @f(i32 %a) {
entry:
        %tmp = alloca i8, i32 %a                ; <i8*> [#uses=1]
        call void @g( i8* %tmp, i32 %a, i32 1, i32 2, i32 3 )
        ret void
}

declare void @g(i8*, i32, i32, i32, i32)
OpenPOWER on IntegriCloud