diff options
author | Thomas Preud'homme <thomas.preudhomme@arm.com> | 2015-12-09 11:00:55 +0800 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2015-12-09 10:30:31 +0100 |
commit | 5b9873fa7236daa522c59c2c40f85938098acfe7 (patch) | |
tree | 8689354e0921c1522de203b9520a9ca52bbb426d /newlib/ChangeLog | |
parent | 91a8eacec6575a3a2c6aa4c4cf26961870f6074a (diff) | |
download | newlib-5b9873fa7236daa522c59c2c40f85938098acfe7.zip newlib-5b9873fa7236daa522c59c2c40f85938098acfe7.tar.gz newlib-5b9873fa7236daa522c59c2c40f85938098acfe7.tar.bz2 |
Check for 64 FP instructions availability in libm before using them
Currently, double precision math functions in newlib/libm/machine/arm detect whether neon instructions can be used for double precision computation by checking the architecture version (>= 8) and the availability of floating-point instructions. However, these instructions would not be available if targeting fpv5-sp-d16 as the FPU, which by definition does not have 64bit float instructions. This patch adds a check that __ARM_FP advertises 64bit float instructions.
* libm/machine/arm/s_ceil.c: Also check that 64bit FP instructions are
available in the guard.
* libm/machine/arm/s_floor.c: Likewise.
* libm/machine/arm/s_nearbyint.c: Likewise.
* libm/machine/arm/s_rint.c: Likewise.
* libm/machine/arm/s_round.c: Likewise.
* libm/machine/arm/s_trunc.c: Likewise.
Diffstat (limited to 'newlib/ChangeLog')
-rw-r--r-- | newlib/ChangeLog | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index de5c84b..1524b99 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,13 @@ +2015-12-09 Thomas Preud'homme <thomas.preudhomme@arm.com> + + * libm/machine/arm/s_ceil.c: Also check that 64bit FP instructions are + available in the guard. + * libm/machine/arm/s_floor.c: Likewise. + * libm/machine/arm/s_nearbyint.c: Likewise. + * libm/machine/arm/s_rint.c: Likewise. + * libm/machine/arm/s_round.c: Likewise. + * libm/machine/arm/s_trunc.c: Likewise. + 2015-12-08 Corinna Vinschen <corinna@vinschen.de> * libc/stdio/fclose.c (_fclose_r): Make _flockfile/_funlockfile calls |