aboutsummaryrefslogtreecommitdiff
path: root/tests/cases/structinparam.ll
blob: d81f5e672dc4a908c45563445cbf3c77d7a7eb80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
; ModuleID = 'min.bc'
target datalayout = "e-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-p:32:32:32-v128:32:32"
target triple = "le32-unknown-nacl"

%ac = type { i8*, i32 }

@0 = constant [9 x i8] c"func %s\0A\00"
@1 = constant [4 x i8] c"foo\00"
@2 = constant [9 x i8] c"main %s\0A\00"

declare void @llvm.trap() noreturn nounwind

define void @direct(%ac) {
entry:
  %str = alloca %ac
  store %ac %0, %ac* %str
  %1 = getelementptr inbounds %ac* %str, i32 0, i32 0
  %2 = load i8** %1
  call void (i8*, ...)* @printf(i8* getelementptr inbounds ([9 x i8]* @0, i32 0, i32 0), i8* %2)
  ret void
}

declare void @printf(i8*, ...)

define i32 @main() {
entry:
  %str = alloca %ac
  store %ac { i8* getelementptr inbounds ([4 x i8]* @1, i32 0, i32 0), i32 3 }, %ac* %str
  %0 = getelementptr inbounds %ac* %str, i32 0, i32 0
  %1 = load i8** %0
  call void (i8*, ...)* @printf(i8* getelementptr inbounds ([9 x i8]* @2, i32 0, i32 0), i8* %1)
  %2 = load %ac* %str
  call void @direct(%ac %2)
  ret i32 0
}