Skip to content

Commit

Permalink
Change asm-comments to verbose-asm
Browse files Browse the repository at this point in the history
This option was recently renamed. See <rust-lang/rust#126803 (comment)>.
  • Loading branch information
tgross35 committed Jul 4, 2024
1 parent 6772c1a commit 78c1bae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/base/orchestrator/src/coordinator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ impl CompileRequest {
// Enable extra assembly comments for nightly builds
if let Channel::Nightly = self.channel {
args.push("-Z");
args.push("asm-comments");
args.push("verbose-asm");
}

args.push("-C");
Expand Down

0 comments on commit 78c1bae

Please sign in to comment.