aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2007-04-01 16:37:33 +0000
committerJakub Jelinek <jakub@redhat.com>2007-04-01 16:37:33 +0000
commit933dfe7baed6ad4b0f85f8f08a604e22cc23a8a8 (patch)
tree6e5daaee5d89c1b8d8d0c92709136dfef19b0f6c
parentd64e9790cce486415378cf833a912ec6b869e404 (diff)
downloadglibc-933dfe7baed6ad4b0f85f8f08a604e22cc23a8a8.zip
glibc-933dfe7baed6ad4b0f85f8f08a604e22cc23a8a8.tar.gz
glibc-933dfe7baed6ad4b0f85f8f08a604e22cc23a8a8.tar.bz2
* sysdeps/ia64/fpu/fesetround.c (fesetround): Return 0 on success
and 1 on failure. * sysdeps/ia64/fpu/fesetround.c (fesetround): Return 0 on success and 1 on failure.
-rw-r--r--ChangeLog3
-rw-r--r--sysdeps/ia64/fpu/fesetround.c6
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 88acd3b..0df66d5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2007-04-01 Jakub Jelinek <jakub@redhat.com>
+ * sysdeps/ia64/fpu/fesetround.c (fesetround): Return 0 on success
+ and 1 on failure.
+
* sysdeps/unix/sysv/linux/sync_file_range.c (sync_file_range):
Change last argument to unsigned int.
diff --git a/sysdeps/ia64/fpu/fesetround.c b/sysdeps/ia64/fpu/fesetround.c
index 351bcc2..13801c8 100644
--- a/sysdeps/ia64/fpu/fesetround.c
+++ b/sysdeps/ia64/fpu/fesetround.c
@@ -1,5 +1,5 @@
/* Set current rounding direction.
- Copyright (C) 1999, 2000, 2005 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000, 2005, 2007 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Christian Boissat <Christian.Boissat@cern.ch>, 1999.
@@ -26,7 +26,7 @@ fesetround (int round)
fenv_t fpsr;
if (round & ~3)
- return 0;
+ return 1;
/* Get the current state. */
__asm__ __volatile__ ("mov.m %0=ar.fpsr" : "=r" (fpsr));
@@ -37,6 +37,6 @@ fesetround (int round)
/* Put the new state in effect. */
__asm__ __volatile__ ("mov.m ar.fpsr=%0" :: "r" (fpsr) : "memory");
- return 1;
+ return 0;
}
libm_hidden_def (fesetround)