mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08:00
Call libc_fetestexcept_aarch64 from math_private.h rather than duplicating functionality.
This commit is contained in:
parent
1c8810ed95
commit
6a9ad2faee
@ -1,3 +1,8 @@
|
||||
2014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
|
||||
|
||||
* sysdeps/aarch64/fpu/fgetexcptflg.c (fegetexceptflag):
|
||||
Call libc_fetestexcept_aarch64.
|
||||
|
||||
2014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
|
||||
|
||||
* sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept):
|
||||
|
@ -17,17 +17,11 @@
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <fenv.h>
|
||||
#include <fpu_control.h>
|
||||
#include <math_private.h>
|
||||
|
||||
int
|
||||
fegetexceptflag (fexcept_t *flagp, int excepts)
|
||||
{
|
||||
fpu_fpsr_t fpsr;
|
||||
|
||||
/* Get the current exceptions. */
|
||||
_FPU_GETFPSR (fpsr);
|
||||
|
||||
*flagp = fpsr & excepts & FE_ALL_EXCEPT;
|
||||
|
||||
*flagp = libc_fetestexcept_aarch64 (excepts);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user