expose ceil, floor and trunc on sgx-target

This commit is contained in:
akashfortanix 2018-12-27 19:13:50 +05:30
parent 10f4f35f96
commit 09a2d437f5
1 changed files with 10 additions and 0 deletions

View File

@ -66,6 +66,16 @@ no_mangle! {
fn tanhf(n: f32) -> f32;
}
#[cfg(target_env = "sgx")]
no_mangle! {
fn ceil(x: f64) -> f64;
fn ceilf(x: f32) -> f32;
fn floor(x: f64) -> f64;
fn floorf(x: f32) -> f32;
fn trunc(x: f64) -> f64;
fn truncf(x: f32) -> f32;
}
// only for the thumb*-none-eabi* targets
#[cfg(all(target_arch = "arm", target_os = "none"))]
no_mangle! {