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

#![crate_type = "lib"]

extern crate always;

// Check that we inline a cross-crate call, even though it isn't a leaf
#[no_mangle]
pub fn outer() -> String {
    // CHECK-NOT: call {{.*}}stem_fn
    always::stem_fn()
}