modify to fit into standard rustfmt output

master
Lokathor 2018-12-20 17:53:10 -07:00
parent 3080360beb
commit a74490a75b
1 changed files with 49 additions and 45 deletions

View File

@ -235,7 +235,11 @@ pub unsafe extern "aapcs" fn __aeabi_memclr8(dest: *mut u8, n: usize) {
}
#[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 {
// TODO: const this? Requires const if
let mut y: usize;