]> git.lizzy.rs Git - rust.git/commitdiff
SGX target: fix cfg(test) build
authorJethro Beekman <jethro@fortanix.com>
Wed, 10 Apr 2019 21:08:54 +0000 (14:08 -0700)
committerJethro Beekman <jethro@fortanix.com>
Wed, 10 Apr 2019 21:08:54 +0000 (14:08 -0700)
src/libstd/sys/sgx/alloc.rs

index b385d567dd8c4324fc9bc8ed7a1e941baa36dee0..40daec758a9fc18d53ad9947b91d682d5cc622ca 100644 (file)
@@ -1,4 +1,4 @@
-use crate::alloc::{self, GlobalAlloc, Layout, System};
+use crate::alloc::{GlobalAlloc, Layout, System};
 
 use super::waitqueue::SpinMutex;
 
@@ -36,11 +36,11 @@ unsafe fn realloc(&self, ptr: *mut u8, layout: Layout, new_size: usize) -> *mut
 #[cfg(not(test))]
 #[no_mangle]
 pub unsafe extern "C" fn __rust_c_alloc(size: usize, align: usize) -> *mut u8 {
-    alloc::alloc(Layout::from_size_align_unchecked(size, align))
+    crate::alloc::alloc(Layout::from_size_align_unchecked(size, align))
 }
 
 #[cfg(not(test))]
 #[no_mangle]
 pub unsafe extern "C" fn __rust_c_dealloc(ptr: *mut u8, size: usize, align: usize) {
-    alloc::dealloc(ptr, Layout::from_size_align_unchecked(size, align))
+    crate::alloc::dealloc(ptr, Layout::from_size_align_unchecked(size, align))
 }