mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
24 lines
595 B
Rust
24 lines
595 B
Rust
// Test that `-Cinstrument-coverage=off` does not add coverage instrumentation to LLVM IR.
|
|
|
|
// needs-profiler-support
|
|
// revisions: n no off false zero
|
|
// [n] compile-flags: -Cinstrument-coverage=n
|
|
// [no] compile-flags: -Cinstrument-coverage=no
|
|
// [off] compile-flags: -Cinstrument-coverage=off
|
|
// [false] compile-flags: -Cinstrument-coverage=false
|
|
// [zero] compile-flags: -Cinstrument-coverage=0
|
|
|
|
// CHECK-NOT: __llvm_profile_filename
|
|
// CHECK-NOT: __llvm_coverage_mapping
|
|
|
|
#![crate_type="lib"]
|
|
|
|
#[inline(never)]
|
|
fn some_function() {
|
|
|
|
}
|
|
|
|
pub fn some_other_function() {
|
|
some_function();
|
|
}
|