rust/tests/codegen/pgo-counter-bias.rs
Zalathar 5330ccdb34 Use -Zno-profiler-runtime instead of //@ needs-profiler-support
For PGO/coverage tests that don't need to build or run an actual artifact, we
can use `-Zno-profiler-runtime` to run the test even when the profiler runtime
is not available.
2024-06-14 13:31:46 +10:00

11 lines
367 B
Rust

// Test that __llvm_profile_counter_bias does not get internalized by lto.
//@ ignore-apple -runtime-counter-relocation not honored on Mach-O
//@ compile-flags: -Cprofile-generate -Cllvm-args=-runtime-counter-relocation -Clto=fat
//@ compile-flags: -Zno-profiler-runtime
//@ no-prefer-dynamic
// CHECK: @__llvm_profile_counter_bias = {{.*}}global
pub fn main() {}