Add __truncdfsf2vfp for ARM

This commit is contained in:
Ayrton 2021-12-12 15:36:09 -05:00
parent 39cd6082e4
commit 03b4f62337

View file

@ -116,4 +116,9 @@ intrinsics! {
pub extern "C" fn __truncdfsf2(a: f64) -> f32 {
trunc(a)
}
#[cfg(target_arch = "arm")]
pub extern "C" fn __truncdfsf2vfp(a: f64) -> f32 {
a as f32
}
}