Re: [PATCH v2 3/4] aarch/fpu: use generic builtins based math functions

2020-06-02 Thread Vineet Gupta
On 6/2/20 10:31 AM, Adhemerval Zanella via Libc-alpha wrote: > > > On 01/06/2020 21:35, Vineet Gupta wrote: >> introduce sysdep header math-use-builtins.h to replace aarch64 >> impementations with corresponding generic ones > > s/impementations/implementations and missing ':'. Fixed. >> - new

Re: [PATCH v2 3/4] aarch/fpu: use generic builtins based math functions

2020-06-02 Thread Adhemerval Zanella
On 01/06/2020 21:35, Vineet Gupta wrote: > introduce sysdep header math-use-builtins.h to replace aarch64 > impementations with corresponding generic ones s/impementations/implementations and missing ':'. > > - newly inroduced generic sqrt{,f}, fma{,f} > - existing floor{,f}, nearbyint{,f},

[PATCH v2 3/4] aarch/fpu: use generic builtins based math functions

2020-06-01 Thread Vineet Gupta
introduce sysdep header math-use-builtins.h to replace aarch64 impementations with corresponding generic ones - newly inroduced generic sqrt{,f}, fma{,f} - existing floor{,f}, nearbyint{,f}, rint{,f}, round{,f}, trunc{,f} - Note that generic copysign was already enabled (via generic math-use