blob: b54821645a50171a45d07f7786d940af1f384bf3 [file] [log] [blame]
Dan Gohman36a09472009-09-08 23:54:48 +00001; RUN: llc < %s -o %t
Dan Gohman28beeea2007-08-15 13:36:28 +00002; RUN: grep __alloca %t | count 2
Chris Lattnerd8429622009-09-08 23:05:44 +00003; RUN: grep -- -16 %t
Dan Gohmanb1576f52007-07-31 20:11:57 +00004; RUN: grep {pushl %eax} %t
Dale Johannesen4e977902008-06-26 01:55:32 +00005; RUN: grep 8028 %t | count 2
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +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"
Chris Lattner54d26fa2009-08-12 06:49:44 +00008target triple = "i386-pc-mingw32"
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00009
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)