blob: 40fc80a3e709ef63d053640744f153d4f8198c7a [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-as < %s | llc -o %t -f
2; RUN: grep __alloca %t | wc -l | grep 2
3; RUN: grep 8028 %t
Dan Gohman91888f02007-07-31 20:11:57 +00004; RUN: grep {pushl %eax} %t
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005; RUN: grep 8024 %t | wc -l | grep 2
6
7target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64"
8target triple = "i386-mingw32"
9
10define void @foo1(i32 %N) {
11entry:
12 %tmp14 = alloca i32, i32 %N ; <i32*> [#uses=1]
13 call void @bar1( i32* %tmp14 )
14 ret void
15}
16
17declare void @bar1(i32*)
18
19define void @foo2(i32 inreg %N) {
20entry:
21 %A2 = alloca [2000 x i32], align 16 ; <[2000 x i32]*> [#uses=1]
22 %A2.sub = getelementptr [2000 x i32]* %A2, i32 0, i32 0 ; <i32*> [#uses=1]
23 call void @bar2( i32* %A2.sub, i32 %N )
24 ret void
25}
26
27declare void @bar2(i32*, i32)