This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 11/13] AArch64: Cleanup fenv implementation


On 23 October 2014 at 18:36, Wilco Dijkstra <wdijkstr@arm.com> wrote:

> -#include <fenv.h>

Likewise, don't drop this header.  Otherwise OK.
/Marcus

> -#include <fpu_control.h>
> +#include <math_private.h>
>
>  int
>  fetestexcept (int excepts)
>  {
> -  fpu_fpsr_t fpsr;
> -
> -  /* Get current exceptions.  */
> -  _FPU_GETFPSR (fpsr);
> -
> -  return fpsr & excepts & FE_ALL_EXCEPT;
> +  return libc_fetestexcept_aarch64 (excepts);
>  }
>  libm_hidden_def (fetestexcept)
> --
> 1.9.1
>
>


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]