mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
21 lines
538 B
Rust
21 lines
538 B
Rust
// Test that `-C instrument-coverage` with `-Z dump-mir-graphviz` generates a graphviz (.dot file)
|
|
// rendering of the `BasicCoverageBlock` coverage control flow graph, with counters and
|
|
// expressions.
|
|
|
|
// needs-profiler-support
|
|
// compile-flags: -C instrument-coverage -Z dump-mir-graphviz
|
|
// EMIT_MIR coverage_graphviz.main.InstrumentCoverage.0.dot
|
|
// EMIT_MIR coverage_graphviz.bar.InstrumentCoverage.0.dot
|
|
fn main() {
|
|
loop {
|
|
if bar() {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
#[inline(never)]
|
|
fn bar() -> bool {
|
|
true
|
|
}
|