about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa/src/back
diff options
context:
space:
mode:
authorEliza Weisman <eliza@buoyant.io>2021-10-07 12:03:15 -0700
committerEliza Weisman <eliza@buoyant.io>2021-10-07 12:03:15 -0700
commit0e79545c306ca173fc406b61a81ea4e14400d293 (patch)
treeff7ea399a80242b5882726c1fa4ba09d9013935e /compiler/rustc_codegen_ssa/src/back
parentb6f09a19b2345a6a898d176570496dea44b06aac (diff)
downloadrust-0e79545c306ca173fc406b61a81ea4e14400d293.tar.gz
rust-0e79545c306ca173fc406b61a81ea4e14400d293.zip
lol i forgot the syntax for my own crate's macros
T_____T

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/back')
-rw-r--r--compiler/rustc_codegen_ssa/src/back/link.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/link.rs b/compiler/rustc_codegen_ssa/src/back/link.rs
index b5429064324..fd59bdca133 100644
--- a/compiler/rustc_codegen_ssa/src/back/link.rs
+++ b/compiler/rustc_codegen_ssa/src/back/link.rs
@@ -843,18 +843,18 @@ fn link_natively<'a, B: ArchiveBuilder<'a>>(
         let msg_bus = "clang: error: unable to execute command: Bus error: 10";
         if out.contains(msg_segv) || out.contains(msg_bus) {
             warn!(
+                ?cmd, %out,
                 "looks like the linker segfaulted when we tried to call it, \
                  automatically retrying again",
-                ?cmd, %out,
             );
             continue;
         }
 
         if is_illegal_instruction(&output.status) {
             warn!(
+                ?cmd, %out, status = %output.status,
                 "looks like the linker hit an illegal instruction when we \
                  tried to call it, automatically retrying again.",
-                ?cmd, %out, status = %output.status,
             );
             continue;
         }