@@ -4260,6 +4260,11 @@ fn muldf3() {
4260
4260
target_os = "linux",
4261
4261
test))]
4262
4262
use core::mem;
4263
+ #[cfg(not(all(target_arch = "arm",
4264
+ not(any(target_env = "gnu", target_env = "musl")),
4265
+ target_os = "linux",
4266
+ test)))]
4267
+ use std::mem;
4263
4268
use compiler_builtins::float::mul::__mulsf3vfp;
4264
4269
4265
4270
fn mk_f32(x: u32) -> f32 {
@@ -4342,6 +4347,11 @@ fn mulsf3vfp() {
4342
4347
target_os = "linux",
4343
4348
test))]
4344
4349
use core::mem;
4350
+ #[cfg(not(all(target_arch = "arm",
4351
+ not(any(target_env = "gnu", target_env = "musl")),
4352
+ target_os = "linux",
4353
+ test)))]
4354
+ use std::mem;
4345
4355
use compiler_builtins::float::mul::__muldf3vfp;
4346
4356
4347
4357
fn mk_f64(x: u64) -> f64 {
@@ -4609,6 +4619,11 @@ fn divdf3() {
4609
4619
target_os = "linux",
4610
4620
test))]
4611
4621
use core::mem;
4622
+ #[cfg(not(all(target_arch = "arm",
4623
+ not(any(target_env = "gnu", target_env = "musl")),
4624
+ target_os = "linux",
4625
+ test)))]
4626
+ use std::mem;
4612
4627
use compiler_builtins::float::div::__divsf3vfp;
4613
4628
4614
4629
fn mk_f32(x: u32) -> f32 {
@@ -4695,6 +4710,11 @@ fn divsf3vfp() {
4695
4710
target_os = "linux",
4696
4711
test))]
4697
4712
use core::mem;
4713
+ #[cfg(not(all(target_arch = "arm",
4714
+ not(any(target_env = "gnu", target_env = "musl")),
4715
+ target_os = "linux",
4716
+ test)))]
4717
+ use std::mem;
4698
4718
use compiler_builtins::float::div::__divdf3vfp;
4699
4719
4700
4720
fn mk_f64(x: u64) -> f64 {
0 commit comments