blob: 27189ab41567cdfb617857403c9203ad188bd646 [file] [log] [blame]
Dan Gohmanfce288f2009-09-09 00:09:15 +00001; RUN: llc < %s
Anton Korobeynikovc772c442009-07-16 14:08:15 +00002
3target datalayout = "E-p:64:64:64-i8:8:16-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-a0:16:16"
4target triple = "s390x-linux"
5
6define void @foo(i64 %N) nounwind {
7entry:
8 %N3 = trunc i64 %N to i32 ; <i32> [#uses=1]
9 %vla = alloca i8, i32 %N3, align 2 ; <i8*> [#uses=1]
10 call void @bar(i8* %vla) nounwind
11 ret void
12}
13
14declare void @bar(i8*)