Merging r261039:
[oota-llvm.git] / test / CodeGen / X86 / mingw-alloca.ll
1 ; RUN: llc < %s -mtriple=i386-pc-mingw32      | FileCheck %s -check-prefix=COFF
2 ; RUN: llc < %s -mtriple=i386-pc-mingw32-elf  | FileCheck %s -check-prefix=ELF
3
4 target 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"
5
6 define void @foo1(i32 %N) nounwind {
7 entry:
8 ; COFF: _foo1:
9 ; COFF: calll __alloca
10 ; ELF: foo1:
11 ; ELF: calll _alloca
12         %tmp14 = alloca i32, i32 %N             ; <i32*> [#uses=1]
13         call void @bar1( i32* %tmp14 )
14         ret void
15 }
16
17 declare void @bar1(i32*)
18
19 define void @foo2(i32 inreg  %N) nounwind {
20 entry:
21 ; COFF: _foo2:
22 ; COFF: andl $-16, %esp
23 ; COFF: pushl %eax
24 ; COFF: calll __alloca
25 ; COFF: movl    8028(%esp), %eax
26 ; ELF: foo2:
27 ; ELF: andl $-16, %esp
28 ; ELF: pushl %eax
29 ; ELF: calll _alloca
30 ; ELF: movl     8028(%esp), %eax
31         %A2 = alloca [2000 x i32], align 16             ; <[2000 x i32]*> [#uses=1]
32         %A2.sub = getelementptr [2000 x i32], [2000 x i32]* %A2, i32 0, i32 0           ; <i32*> [#uses=1]
33         call void @bar2( i32* %A2.sub, i32 %N )
34         ret void
35 }
36
37 declare void @bar2(i32*, i32)