change selectiondag to add the sign extended versions of immediate operands
[oota-llvm.git] / test / CodeGen / X86 / mingw-alloca.ll
1 ; RUN: llvm-as < %s | llc -o %t
2 ; RUN: grep __alloca %t | count 2
3 ; RUN: grep -- -16 %t
4 ; RUN: grep {pushl      %eax} %t
5 ; RUN: grep 8028 %t | count 2
6
7 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"
8 target triple = "i386-pc-mingw32"
9
10 define void @foo1(i32 %N) {
11 entry:
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) {
20 entry:
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
27 declare void @bar2(i32*, i32)