Skip to content

Commit 25edd20

Browse files
committed
remove unused imports
1 parent ebeace7 commit 25edd20

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/arm.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,6 @@ pub unsafe extern "aapcs" fn __aeabi_memcpy(dest: *mut u8, src: *const u8, n: us
135135
#[cfg_attr(not(feature = "mangled-names"), no_mangle)]
136136
#[cfg_attr(thumb, linkage = "weak")]
137137
pub unsafe extern "aapcs" fn __aeabi_memcpy4(dest: *mut u8, src: *const u8, mut n: usize) {
138-
use core::ptr;
139-
140138
// We are guaranteed 4-alignment, so accessing at u32 is okay.
141139
let mut dest = dest as *mut u32;
142140
let mut src = src as *mut u32;
@@ -191,8 +189,6 @@ pub unsafe extern "aapcs" fn __aeabi_memset(dest: *mut u8, n: usize, c: i32) {
191189
#[cfg_attr(not(feature = "mangled-names"), no_mangle)]
192190
#[cfg_attr(thumb, linkage = "weak")]
193191
pub unsafe extern "aapcs" fn __aeabi_memset4(dest: *mut u8, mut n: usize, c: i32) {
194-
use core::ptr;
195-
196192
let mut dest = dest as *mut u32;
197193

198194
let byte = (c as u32) & 0xff;

0 commit comments

Comments
 (0)