blob: 90de18e6ecb60c1a9eb63177c66b6f4f0db06d17 [file] [log] [blame]
Chris Lattnerb0af8ce2010-12-20 07:38:24 +00001; RUN: opt < %s -inline -S | FileCheck %s
Chris Lattnerc93adca2008-01-11 06:09:30 +00002
3; Inlining a byval struct should cause an explicit copy into an alloca.
4
5 %struct.ss = type { i32, i64 }
6@.str = internal constant [10 x i8] c"%d, %lld\0A\00" ; <[10 x i8]*> [#uses=1]
7
8define internal void @f(%struct.ss* byval %b) nounwind {
9entry:
10 %tmp = getelementptr %struct.ss* %b, i32 0, i32 0 ; <i32*> [#uses=2]
11 %tmp1 = load i32* %tmp, align 4 ; <i32> [#uses=1]
12 %tmp2 = add i32 %tmp1, 1 ; <i32> [#uses=1]
13 store i32 %tmp2, i32* %tmp, align 4
14 ret void
15}
16
17declare i32 @printf(i8*, ...) nounwind
18
Chris Lattnerb0af8ce2010-12-20 07:38:24 +000019define i32 @caller() nounwind {
Chris Lattnerc93adca2008-01-11 06:09:30 +000020entry:
21 %S = alloca %struct.ss ; <%struct.ss*> [#uses=4]
22 %tmp1 = getelementptr %struct.ss* %S, i32 0, i32 0 ; <i32*> [#uses=1]
23 store i32 1, i32* %tmp1, align 8
24 %tmp4 = getelementptr %struct.ss* %S, i32 0, i32 1 ; <i64*> [#uses=1]
25 store i64 2, i64* %tmp4, align 4
26 call void @f( %struct.ss* byval %S ) nounwind
27 ret i32 0
Chris Lattnerb0af8ce2010-12-20 07:38:24 +000028; CHECK: @caller()
29; CHECK: %b = alloca %struct.ss
30; CHECK: call void @llvm.memcpy
Chris Lattnerc93adca2008-01-11 06:09:30 +000031}