summaryrefslogtreecommitdiffstats
path: root/tests/codegen/cross-crate-inlining/never-inline.rs
blob: 4e7bc3e5154cb6796c9ddacf7785727dcccee333 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// compile-flags: -O
// aux-build:never.rs

#![crate_type = "lib"]

extern crate never;

// Check that we do not inline a cross-crate call, even though it is a leaf
#[no_mangle]
pub fn outer() -> String {
    // CHECK: call {{.*}}leaf_fn
    never::leaf_fn()
}