aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/alloca.ll
blob: b77f234e108799338ff0cea5e7639d6bfec5c0f3 (plain)
1
2
3
4
5
6
7
8
9
; RUN: llvm-as < %s | llc -march=arm
void %f(uint %a) {
entry:
	%tmp = alloca sbyte, uint %a
	call void %g( sbyte* %tmp, uint %a, uint 1, uint 2, uint 3 )
	ret void
}

declare void %g(sbyte*, uint, uint, uint, uint)