mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
22 lines
741 B
Rust
22 lines
741 B
Rust
//@ add-core-stubs
|
|
//@ compile-flags: -Copt-level=3
|
|
#![feature(c_variadic)]
|
|
#![crate_type = "lib"]
|
|
|
|
// Check that `%args` explicitly has its lifetime start and end. Being explicit can improve
|
|
// instruction and register selection, see e.g. https://github.com/rust-lang/rust/pull/144549
|
|
|
|
#[unsafe(no_mangle)]
|
|
unsafe extern "C" fn variadic(a: f64, mut args: ...) -> f64 {
|
|
// CHECK: call void @llvm.lifetime.start.p0({{(i64 [0-9]+, )?}}ptr nonnull %args)
|
|
// CHECK: call void @llvm.va_start.p0(ptr nonnull %args)
|
|
|
|
let b = args.arg::<f64>();
|
|
let c = args.arg::<f64>();
|
|
|
|
a + b + c
|
|
|
|
// CHECK: call void @llvm.va_end.p0(ptr nonnull %args)
|
|
// CHECK: call void @llvm.lifetime.end.p0({{(i64 [0-9]+, )?}}ptr nonnull %args)
|
|
}
|