__[mul/div]sf3vfp and __[mul/div]df3vfp only on ARM

This commit is contained in:
Paolo Teti
2018-01-30 18:48:20 +01:00
parent 9a4e458b48
commit 2986291965
2 changed files with 4 additions and 0 deletions

View File

@@ -189,10 +189,12 @@ intrinsics! {
mul(a, b)
}
#[cfg(target_arch = "arm")]
pub extern "C" fn __mulsf3vfp(a: f32, b: f32) -> f32 {
a * b
}
#[cfg(target_arch = "arm")]
pub extern "C" fn __muldf3vfp(a: f64, b: f64) -> f64 {
a * b
}