about summary refs log tree commit diff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2016-08-10 21:47:35 +0000
committerJoseph Myers <joseph@codesourcery.com>2016-08-10 21:47:35 +0000
commitf79211792127f38d5954419bb3784c8eb7f5e4e5 (patch)
tree157f46069f8b709e7257e7ec84fbca2a086139e3 /ChangeLog
parent5220a1aa8da8f9fc6163f67164d3889effb9621c (diff)
downloadglibc-f79211792127f38d5954419bb3784c8eb7f5e4e5.tar.gz
glibc-f79211792127f38d5954419bb3784c8eb7f5e4e5.tar.xz
glibc-f79211792127f38d5954419bb3784c8eb7f5e4e5.zip
Fix powerpc fesetexceptflag clearing FE_INVALID (bug 20455).
As shown by the test math/test-fexcept, the powerpc fesetexceptflag
implementation fails to clear a previously set FE_INVALID flag, when
that flag is clear in the saved exceptions and FE_INVALID is included
in the mask of flags to restore, because it fails to mask out the
sub-exceptions of FE_INVALID from the FPSCR state.  This patch fixes
the masking logic accordingly.

Tested for powerpc.

	[BZ #20455]
	* sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Mask out
	all FE_INVALID sub-exceptions from FPSCR when FE_INVALID specified
	to be restored.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 2cf36488c2..6a2e39cfb2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2016-08-10  Joseph Myers  <joseph@codesourcery.com>
 
+	[BZ #20455]
+	* sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Mask out
+	all FE_INVALID sub-exceptions from FPSCR when FE_INVALID specified
+	to be restored.
+
 	* math/test-fexcept-traps.c: New file.
 	* math/test-fexcept.c: Likewise.
 	* math/Makefile (tests): Add test-fexcept and test-fexcept-traps.