modify to fit into standard rustfmt output
This commit is contained in:
parent
3080360beb
commit
a74490a75b
|
@ -235,7 +235,11 @@ pub unsafe extern "aapcs" fn __aeabi_memclr8(dest: *mut u8, n: usize) {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
#[cfg(any(target_pointer_width = "16", target_pointer_width = "32", target_pointer_width = "64"))]
|
#[cfg(any(
|
||||||
|
target_pointer_width = "16",
|
||||||
|
target_pointer_width = "32",
|
||||||
|
target_pointer_width = "64"
|
||||||
|
))]
|
||||||
pub extern "C" fn __clzsi2(mut x: usize) -> usize {
|
pub extern "C" fn __clzsi2(mut x: usize) -> usize {
|
||||||
// TODO: const this? Requires const if
|
// TODO: const this? Requires const if
|
||||||
let mut y: usize;
|
let mut y: usize;
|
||||||
|
|
Loading…
Reference in New Issue