Skip to content

Commit 0e79545

Browse files
committed
lol i forgot the syntax for my own crate's macros
T_____T Signed-off-by: Eliza Weisman <[email protected]>
1 parent b6f09a1 commit 0e79545

File tree

1 file changed

+2
-2
lines changed
  • compiler/rustc_codegen_ssa/src/back

1 file changed

+2
-2
lines changed

compiler/rustc_codegen_ssa/src/back/link.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -843,18 +843,18 @@ fn link_natively<'a, B: ArchiveBuilder<'a>>(
843843
let msg_bus = "clang: error: unable to execute command: Bus error: 10";
844844
if out.contains(msg_segv) || out.contains(msg_bus) {
845845
warn!(
846+
?cmd, %out,
846847
"looks like the linker segfaulted when we tried to call it, \
847848
automatically retrying again",
848-
?cmd, %out,
849849
);
850850
continue;
851851
}
852852

853853
if is_illegal_instruction(&output.status) {
854854
warn!(
855+
?cmd, %out, status = %output.status,
855856
"looks like the linker hit an illegal instruction when we \
856857
tried to call it, automatically retrying again.",
857-
?cmd, %out, status = %output.status,
858858
);
859859
continue;
860860
}

0 commit comments

Comments
 (0)