about summary refs log tree commit diff
path: root/sysdeps/powerpc
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2015-01-14 21:35:40 +0000
committerJoseph Myers <joseph@codesourcery.com>2015-01-14 21:35:40 +0000
commit53fbd16918791258ebc1684b1a1afd543b814780 (patch)
tree2ec9c5d3e90eca49321771f0682f106bf6f82370 /sysdeps/powerpc
parentd639a36345dfce12cbb69e254e8d2f32e5da9ed9 (diff)
downloadglibc-53fbd16918791258ebc1684b1a1afd543b814780.tar.gz
glibc-53fbd16918791258ebc1684b1a1afd543b814780.tar.xz
glibc-53fbd16918791258ebc1684b1a1afd543b814780.zip
Fix powerpc-nofpu fesetenv namespace (bug 17748).
When fixing namespace issues for <fenv.h> functions I missed one call
to fesetenv for powerpc-nofpu.  This patch changes this to a call to
__fesetenv.

Tested for powerpc-nofpu; it fixes the previously observed math.h
linknamespace test failures.

	[BZ #17748]
	* sysdeps/powerpc/nofpu/feholdexcpt.c (__feholdexcept): Call
	__fesetenv instead of fesetenv.
Diffstat (limited to 'sysdeps/powerpc')
-rw-r--r--sysdeps/powerpc/nofpu/feholdexcpt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/powerpc/nofpu/feholdexcpt.c b/sysdeps/powerpc/nofpu/feholdexcpt.c
index 5bb18a82a9..a3d0121680 100644
--- a/sysdeps/powerpc/nofpu/feholdexcpt.c
+++ b/sysdeps/powerpc/nofpu/feholdexcpt.c
@@ -36,7 +36,7 @@ __feholdexcept (fenv_t *envp)
   u.l[1] = FE_ALL_EXCEPT;
 
   /* Put the new state in effect.  */
-  fesetenv (&u.fenv);
+  __fesetenv (&u.fenv);
 
   return 0;
 }