Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Analysis / LazyCallGraph / remove-dead-function-spurious-ref-edge.ll
blob2bc486f541c71fdc4650ba6fdd8474dc0581eacf
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt -passes=argpromotion,inline -S %s | FileCheck %s
4 ; argpromo removes @b's parameter (removing @c's reference to @a without updating the ref edge in the call graph), then the inliner inlines @a into @d and attempts to remove @a.
6 define internal void @a() alwaysinline {
7   call void @e(ptr @c)
8   ret void
11 define internal void @b(ptr) noinline {
12 ; CHECK-LABEL: @b(
13 ; CHECK-NEXT:    ret void
15   ret void
18 define internal void @c() noinline {
19 ; CHECK-LABEL: @c(
20 ; CHECK-NEXT:    call void @b()
21 ; CHECK-NEXT:    ret void
23   call void @b(ptr @a)
24   ret void
27 define void @d() {
28 ; CHECK-LABEL: @d(
29 ; CHECK-NEXT:    call void @e(ptr @c)
30 ; CHECK-NEXT:    ret void
32   call void @a()
33   ret void
36 declare void @e(ptr);