Skip to content

Commit be93bee

Browse files
committed
Fix collector llvm-lines.
We need to run `cargo llvm-lines` rather than `cargo rustc`.
1 parent e67ef0c commit be93bee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

collector/src/execute.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ impl Profiler {
172172
}
173173
}
174174
Profiler::LlvmLines => match build_kind {
175-
BuildKind::Debug | BuildKind::Opt => Some("rustc"),
175+
BuildKind::Debug | BuildKind::Opt => Some("llvm-lines"),
176176
BuildKind::Check | BuildKind::Doc => None,
177177
},
178178
}

0 commit comments

Comments
 (0)