commit | 675721a41a9648323550357486c1e9823a45e86c | [log] [tgz] |
---|---|---|
author | Szabolcs Nagy <szabolcs.nagy@arm.com> | Wed Nov 06 19:40:06 2019 +0000 |
committer | Szabolcs Nagy <szabolcs.nagy@arm.com> | Wed Nov 06 19:40:06 2019 +0000 |
tree | be8ef6b6138133761f5f1ac8c843b0cad0ffd597 | |
parent | 80922e8b4063102547faa147355f13900da0eda0 [diff] |
math: allow errno setting even if !(math_errhandling&MATH_ERRNO) The math_errhandling checks are incorrect in general: it is defined by the libc math.h which is not appropriate for optimized-routines provided functions that we are testing. However even if we want to test a libc implementation, ISO C allows the setting of errno even if !(math_errhandling&MATH_ERRNO), so relax the checks.