mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 04:55:22 +03:00
SGX target: fix cfg(test) build
This commit is contained in:
@@ -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))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user