]> sourceware.org Git - glibc.git/commitdiff
Fix ARM fenv.h fallbacks when excepts == 0.
authorJoseph Myers <joseph@codesourcery.com>
Fri, 7 Jan 2011 01:42:06 +0000 (01:42 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Fri, 7 Jan 2011 01:42:06 +0000 (01:42 +0000)
ChangeLog.arm
sysdeps/arm/eabi/fclrexcpt.c
sysdeps/arm/eabi/fraiseexcpt.c
sysdeps/arm/eabi/fsetexcptflg.c

index d02f269593f6dc5e46f86e9cbf27cdec83c0b344..8951801aabaf4c62ca18a91b3d889da048c7754b 100644 (file)
@@ -1,3 +1,10 @@
+2011-01-07  Joseph Myers  <joseph@codesourcery.com>
+
+       * sysdeps/arm/eabi/fclrexcpt.c (__feclearexcept): Return zero if
+       unsupported but nothing needs to be done.
+       * sysdeps/arm/eabi/fraiseexcpt.c (feraiseexcept): Likewise.
+       * sysdeps/arm/eabi/fsetexcptflg.c (__fesetexceptflag): Likewise.
+
 2010-12-21  Joseph Myers  <joseph@codesourcery.com>
 
        * sysdeps/arm/stackinfo.h: Define DEFAULT_STACK_PERMS with PF_X.
index 8287dc61bd983ff7f528cf0098c70b45f56827d2..0bdd6a14d3b68f48668d45d337521a2ad4fd3a52 100644 (file)
@@ -1,5 +1,5 @@
 /* Clear given exceptions in current floating-point environment.
-   Copyright (C) 1997,98,99,2000,01,05 Free Software Foundation, Inc.
+   Copyright (C) 1997,98,99,2000,01,05,11 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
@@ -48,8 +48,8 @@ __feclearexcept (int excepts)
       return 0;
     }
 
-  /* Unsupported, so fail.  */
-  return 1;
+  /* Unsupported, so fail unless nothing needs to be done.  */
+  return (excepts != 0);
 }
 
 #include <shlib-compat.h>
index 53ccd9d01f2014b20c6d9536f35c8b382f3c2fb2..78441ec013a48cd3b2252cf3bc5f901f26f5621e 100644 (file)
@@ -1,5 +1,5 @@
 /* Raise given exceptions.
-   Copyright (C) 2004, 2005 Free Software Foundation, Inc.
+   Copyright (C) 2004, 2005, 2011 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
@@ -103,8 +103,8 @@ feraiseexcept (int excepts)
       return 0;
     }
 
-  /* Unsupported, so fail.  */
-  return 1;
+  /* Unsupported, so fail unless nothing needs to be done.  */
+  return (excepts != 0);
 }
 
 libm_hidden_def (feraiseexcept)
index 3dfeb2c2955fdfb5d15d06ced3d8fb798218c837..28966bb8f642067db025ba00a12f410364396d3c 100644 (file)
@@ -1,5 +1,5 @@
 /* Set floating-point environment exception handling.
-   Copyright (C) 1997,98,99,2000,01,05,08 Free Software Foundation, Inc.
+   Copyright (C) 1997,98,99,2000,01,05,08,11 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
@@ -47,8 +47,8 @@ __fesetexceptflag (const fexcept_t *flagp, int excepts)
       return 0;
     }
 
-  /* Unsupported, so fail.  */
-  return 1;
+  /* Unsupported, so fail unless nothing needs to be done.  */
+  return (excepts != 0);
 }
 
 #include <shlib-compat.h>
This page took 0.057976 seconds and 5 git commands to generate.