From 367ad5bbb2d4ad086b86294f753a21ff5dc8020b Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Tue, 17 Nov 2020 20:28:58 +0200 Subject: [PATCH] Adjust for nightly rustfmt bug See https://github.com/rust-lang/rustfmt/issues/4528 for the bug description, namely rustfmt removes this comment completely if it's left in the extern block. --- nucleus/src/arch/aarch64/boot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nucleus/src/arch/aarch64/boot.rs b/nucleus/src/arch/aarch64/boot.rs index 11cd71e..fe9ad35 100644 --- a/nucleus/src/arch/aarch64/boot.rs +++ b/nucleus/src/arch/aarch64/boot.rs @@ -41,8 +41,8 @@ macro_rules! entry { /// Totally unsafe! We're in the hardware land. #[link_section = ".text.boot"] unsafe fn reset() -> ! { + // Boundaries of the .bss section, provided by the linker script extern "C" { - // Boundaries of the .bss section, provided by the linker script static mut __BSS_START: u64; static mut __BSS_END: u64; }