about summary refs log tree commit diff
path: root/ports/sysdeps/microblaze
diff options
context:
space:
mode:
authorDavid Holsgrove <david.holsgrove@xilinx.com>2014-02-04 09:22:42 +1000
committerDavid Holsgrove <david.holsgrove@xilinx.com>2014-02-05 17:22:19 +1000
commite9043c0dfeeadffdb15eef6b235416307d718d97 (patch)
tree7170706b362bd5f57945190e6fd5b527b406f669 /ports/sysdeps/microblaze
parent58c744fc404ec7ffb8425efc8e99a1fe41cd934a (diff)
downloadglibc-e9043c0dfeeadffdb15eef6b235416307d718d97.tar.gz
glibc-e9043c0dfeeadffdb15eef6b235416307d718d97.tar.xz
glibc-e9043c0dfeeadffdb15eef6b235416307d718d97.zip
microblaze: Use <fenv.h> fallback functions
Delete redundant fegetround.c and fesetround.c for microblaze
and use the fallback functions instead.

ports/ChangeLog.microblaze

 2014-02-04  David Holsgrove <david.holsgrove@xilinx.com>

    * sysdeps/microblaze/fegetround.c: Delete redundant file.
    * sysdeps/microblaze/fesetround.c: Likewise.

Signed-off-by: David Holsgrove <david.holsgrove@xilinx.com>
Diffstat (limited to 'ports/sysdeps/microblaze')
-rw-r--r--ports/sysdeps/microblaze/fegetround.c25
-rw-r--r--ports/sysdeps/microblaze/fesetround.c25
2 files changed, 0 insertions, 50 deletions
diff --git a/ports/sysdeps/microblaze/fegetround.c b/ports/sysdeps/microblaze/fegetround.c
deleted file mode 100644
index a2e57ebc2b..0000000000
--- a/ports/sysdeps/microblaze/fegetround.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/* Copyright (C) 2011-2014 Free Software Foundation, Inc.
-   This file is part of the GNU C Library.
-
-   The GNU C Library is free software; you can redistribute it and/or
-   modify it under the terms of the GNU Lesser General Public
-   License as published by the Free Software Foundation; either
-   version 2.1 of the License, or (at your option) any later version.
-
-   The GNU C Library is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-   Lesser General Public License for more details.
-
-   You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library.  If not, see
-   <http://www.gnu.org/licenses/>.  */
-
-#include <fenv.h>
-
-int
-fegetround (void)
-{
-  return FE_TONEAREST;
-}
-libm_hidden_def (fegetround)
diff --git a/ports/sysdeps/microblaze/fesetround.c b/ports/sysdeps/microblaze/fesetround.c
deleted file mode 100644
index 16e2bf20ec..0000000000
--- a/ports/sysdeps/microblaze/fesetround.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/* Copyright (C) 2011-2014 Free Software Foundation, Inc.
-   This file is part of the GNU C Library.
-
-   The GNU C Library is free software; you can redistribute it and/or
-   modify it under the terms of the GNU Lesser General Public
-   License as published by the Free Software Foundation; either
-   version 2.1 of the License, or (at your option) any later version.
-
-   The GNU C Library is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-   Lesser General Public License for more details.
-
-   You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library.  If not, see
-   <http://www.gnu.org/licenses/>.  */
-
-#include <fenv.h>
-
-int
-fesetround (int round)
-{
-  return (round == FE_TONEAREST) ? 0 : 1;
-}
-libm_hidden_def (fesetround)