blob: 1df0e3a3e6b0bf1a118cc4b5abad82a4ef222503 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-as < %s | llc -o %t -f
Dan Gohman8c89a502007-08-15 13:36:28 +00002; RUN: grep __alloca %t | count 2
Anton Korobeynikov82052ab2008-04-23 18:25:16 +00003; RUN: grep 4294967288 %t
Dan Gohman91888f02007-07-31 20:11:57 +00004; RUN: grep {pushl %eax} %t
Dale Johannesen3636e852008-06-26 01:55:32 +00005; RUN: grep 8028 %t | count 2
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006
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)