fegetenv.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * Copyright (C) 2016-2017 Andes Technology, Inc.
  3. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  4. */
  5. /* Store current floating-point environment.
  6. Copyright (C) 1997-2013 Free Software Foundation, Inc.
  7. The GNU C Library is free software; you can redistribute it and/or
  8. modify it under the terms of the GNU Lesser General Public
  9. License as published by the Free Software Foundation; either
  10. version 2.1 of the License, or (at your option) any later version.
  11. The GNU C Library is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. Lesser General Public License for more details.
  15. You should have received a copy of the GNU Lesser General Public
  16. License along with the GNU C Library. If not, see
  17. <http://www.gnu.org/licenses/>. */
  18. #include <fenv.h>
  19. #include <fpu_control.h>
  20. int
  21. fegetenv (fenv_t *envp)
  22. {
  23. #ifdef __NDS32_ABI_2FP_PLUS__
  24. unsigned long int temp;
  25. _FPU_GETCW (temp);
  26. envp->__fpcsr = temp;
  27. /* Success. */
  28. return 0;
  29. #else
  30. /* Unsupported, so fail. */
  31. return 1;
  32. #endif
  33. }