2024-02-22 06:10:29 -06:00
|
|
|
//@ compile-flags: -O
|
|
|
|
//@ aux-build:always.rs
|
2023-11-06 18:55:05 -06:00
|
|
|
|
|
|
|
#![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()
|
|
|
|
}
|