1 ; RUN: opt -passes=inline -inline-threshold=10 -S < %s | FileCheck %s
6 ; CHECK-NOT: %res = call i64 @callee(ptr %p)
7 define i64 @caller(ptr %p) {
8 %res = call i64 @callee(ptr %p)
12 define i64 @callee(ptr %p) {
13 %null_check = icmp eq ptr %p, null
14 br i1 %null_check, label %is_null, label %non_null, !make.implicit !0