Forbid arrays of function-type and structures with function-typed fields.
[llvm/avr.git] / test / CodeGen / ARM / argaddr.ll
blob116a32f9c74d399897fce34833eefa093d13a51a
1 ; RUN: llc < %s -march=arm
3 define void @f(i32 %a, i32 %b, i32 %c, i32 %d, i32 %e) {
4 entry:
5         %a_addr = alloca i32            ; <i32*> [#uses=2]
6         %b_addr = alloca i32            ; <i32*> [#uses=2]
7         %c_addr = alloca i32            ; <i32*> [#uses=2]
8         %d_addr = alloca i32            ; <i32*> [#uses=2]
9         %e_addr = alloca i32            ; <i32*> [#uses=2]
10         store i32 %a, i32* %a_addr
11         store i32 %b, i32* %b_addr
12         store i32 %c, i32* %c_addr
13         store i32 %d, i32* %d_addr
14         store i32 %e, i32* %e_addr
15         call void @g( i32* %a_addr, i32* %b_addr, i32* %c_addr, i32* %d_addr, i32* %e_addr )
16         ret void
19 declare void @g(i32*, i32*, i32*, i32*, i32*)