fsetexcptflg.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. /* Set floating-point environment exception handling.
  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. fesetexceptflag (const fexcept_t *flagp, int excepts)
  22. {
  23. #ifdef __NDS32_ABI_2FP_PLUS__
  24. fexcept_t temp;
  25. /* Get the current environment. */
  26. _FPU_GETCW (temp);
  27. /* Set the desired exception mask. */
  28. temp &= ~(excepts & FE_ALL_EXCEPT);
  29. temp |= (*flagp & excepts & FE_ALL_EXCEPT);
  30. /* Save state back to the FPU. */
  31. _FPU_SETCW (temp);
  32. /* Success. */
  33. return 0;
  34. #else
  35. /* Unsupported, so fail unless nothing needs to be done. */
  36. return (excepts != 0);
  37. #endif
  38. }