1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-05 18:15:49 +02:00

cargo fmt with imports_granularity = "module"

This commit is contained in:
Andrew Walbran 2023-04-13 16:09:33 +01:00
parent e27755971a
commit 3e4a869587

View File

@ -15,13 +15,11 @@
#![allow(unused)]
use bitflags::bitflags;
use core::{
arch::asm,
fmt::{self, Debug, Formatter},
hint::spin_loop,
mem::size_of,
ptr::{addr_of, addr_of_mut},
};
use core::arch::asm;
use core::fmt::{self, Debug, Formatter};
use core::hint::spin_loop;
use core::mem::size_of;
use core::ptr::{addr_of, addr_of_mut};
use log::trace;
/// Reads and returns the value of the given aarch64 system register.