Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Transforms / Inline / module-inlining.ll
blobf22c0f580b6e48d4fbe63ec504d6b18de93c906c
1 ; modify_value will be inlined into main. With just the inliner pass, at most 
2 ; some trivial DCE would happen, which in this case doesn't modify post-inlined
3 ; main much.
4 ; In contrast, with the full set of module inliner-related passes, at the end of
5 ; inlining (incl. function cleanups ran after inlining), main will be reduced to
6 ; a 'ret 10'
8 ; RUN: opt -passes=inline -S < %s | FileCheck %s --check-prefix=INLINE --check-prefix=CHECK
9 ; RUN: opt -passes=inliner-wrapper -S < %s | FileCheck %s --check-prefix=INLINE --check-prefix=CHECK
10 ; RUN: opt -passes=scc-oz-module-inliner -S < %s | FileCheck %s --check-prefix=MODULE --check-prefix=CHECK
12 define void @modify_value(ptr %v) {
13     %f = getelementptr { i32, float }, ptr %v, i64 0, i32 0
14     store i32 10, ptr %f
15     ret void
18 define i32 @main() {
19     %my_val = alloca {i32, float}
20     call void @modify_value(ptr %my_val)
21     %f = getelementptr { i32, float }, ptr %my_val, i64 0, i32 0
22     %ret = load i32, ptr %f
23     ret i32 %ret
26 ; CHECK-LABEL: @main
27 ; INLINE-NEXT: %my_val = alloca
28 ; MODULE-NEXT: ret i32 10