fesetround.c 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 current rounding direction.
  6. Copyright (C) 2004-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. fesetround (int round)
  22. {
  23. #ifdef __NDS32_ABI_2FP_PLUS__
  24. fpu_control_t temp;
  25. if ((round & ~0x3) != 0)
  26. /* ROUND is no valid rounding mode. */
  27. return 1;
  28. _FPU_GETCW (temp);
  29. temp = (temp & ~0x3) | round;
  30. _FPU_SETCW (temp);
  31. return 0;
  32. #else
  33. return (round != FE_TONEAREST);
  34. #endif
  35. }