Fix apple/ARM FPU test, allow for FLT_EPSILON for unaligned math

This commit is contained in:
Robin Gareus 2022-10-01 06:28:07 +02:00
parent 49f7e4d447
commit c09e66bb25
1 changed files with 4 additions and 0 deletions

View File

@ -225,7 +225,11 @@ FPUTest::veclibTest ()
mix_buffers_no_gain = veclib_mix_buffers_no_gain;
copy_vector = default_copy_vector;
#ifdef __aarch64__
run (16, FLT_EPSILON);
#else
run (16);
#endif
}
#else