Skip to content

Commit

Permalink
SGX target: fix cfg(test) build
Browse files Browse the repository at this point in the history
  • Loading branch information
Jethro Beekman committed Apr 10, 2019
1 parent 96d700f commit e2d1d66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/libstd/sys/sgx/alloc.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::alloc::{self, GlobalAlloc, Layout, System};
use crate::alloc::{GlobalAlloc, Layout, System};

use super::waitqueue::SpinMutex;

Expand Down Expand Up @@ -36,11 +36,11 @@ unsafe impl GlobalAlloc for System {
#[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))
}

0 comments on commit e2d1d66

Please sign in to comment.