Recommit "rL366894: [yaml2obj] - Allow custom fields for the SHT_UNDEF sections."
[llvm-complete.git] / test / Bindings / llvm-c / memops.ll
blobcc41b7bf724e2ecbf79eaf94c9477785a50a89df
1 ; RUN: llvm-as < %s | llvm-dis > %t.orig
2 ; RUN: llvm-as < %s | llvm-c-test --echo > %t.echo
3 ; RUN: diff -w %t.orig %t.echo
5 %S = type { i32, i32 }
7 define i32 @method(%S* %this, i32 %arg.a, i32 %arg.b) {
8   %a = alloca i32
9   store i32 %arg.a, i32* %a, align 4
10   %b = alloca i32
11   store i32 %arg.b, i32* %b
12   %1 = load i32, i32* %a, align 4
13   %2 = load i32, i32* %b, align 4
14   %3 = add i32 %1, %2
15   %4 = getelementptr inbounds %S, %S* %this, i32 0, i32 0
16   %5 = load i32, i32* %4, align 4
17   %6 = add i32 %3, %5
18   %7 = getelementptr inbounds %S, %S* %this, i32 0, i32 1
19   %8 = load i32, i32* %7, align 4
20   %9 = add i32 %6, %8
21   ret i32 %9
24 define i32 @main() {
25   %s = alloca %S
26   store %S zeroinitializer, %S* %s
27   %1 = getelementptr inbounds %S, %S* %s, i32 0, i32 0
28   %2 = getelementptr inbounds %S, %S* %s, i32 0, i32 1
29   store i32 1, i32* %2
30   store i32 1, i32* %1
31   %3 = insertvalue { %S*, i32 (%S*, i32, i32)* } undef, %S* %s, 0
32   %4 = insertvalue { %S*, i32 (%S*, i32, i32)* } %3, i32 (%S*, i32, i32)* @method, 1
33   %5 = extractvalue { %S*, i32 (%S*, i32, i32)* } %4, 0
34   %6 = extractvalue { %S*, i32 (%S*, i32, i32)* } %4, 1
35   %7 = call i32 %6(%S* %5, i32 38, i32 2)
36   ret i32 %7