From 78c1bae040edd042b46d5c635bbb68a15a9af7f7 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Thu, 4 Jul 2024 14:20:20 -0400 Subject: [PATCH] Change `asm-comments` to `verbose-asm` This option was recently renamed. See . --- compiler/base/orchestrator/src/coordinator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/base/orchestrator/src/coordinator.rs b/compiler/base/orchestrator/src/coordinator.rs index 4a6e2719..33fd5e14 100644 --- a/compiler/base/orchestrator/src/coordinator.rs +++ b/compiler/base/orchestrator/src/coordinator.rs @@ -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");