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.
This commit is contained in:
parent
53e68bf7b3
commit
367ad5bbb2
|
@ -41,8 +41,8 @@ macro_rules! entry {
|
||||||
/// Totally unsafe! We're in the hardware land.
|
/// Totally unsafe! We're in the hardware land.
|
||||||
#[link_section = ".text.boot"]
|
#[link_section = ".text.boot"]
|
||||||
unsafe fn reset() -> ! {
|
unsafe fn reset() -> ! {
|
||||||
|
// Boundaries of the .bss section, provided by the linker script
|
||||||
extern "C" {
|
extern "C" {
|
||||||
// Boundaries of the .bss section, provided by the linker script
|
|
||||||
static mut __BSS_START: u64;
|
static mut __BSS_START: u64;
|
||||||
static mut __BSS_END: u64;
|
static mut __BSS_END: u64;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue