svn commit: r367761 - head/lib/msun/powerpc

Alfredo Dal'Ava Junior alfredo at FreeBSD.org
Tue Nov 17 12:37:00 UTC 2020


Author: alfredo
Date: Tue Nov 17 12:36:59 2020
New Revision: 367761
URL: https://svnweb.freebsd.org/changeset/base/367761

Log:
  [POWERPC] msun: fix incorrect flag in fesetexceptflag
  
  Fix incorrect mask being used when FE_INVALID bit is wanted by user.
  The problem was noticed thanks to msun fenv tests.
  
  Reviewed by:	jhibbits, luporl
  Sponsored by:	Eldorado Research Institute (eldorado.org.br)
  Differential Revision:	https://reviews.freebsd.org/D27201

Modified:
  head/lib/msun/powerpc/fenv.h

Modified: head/lib/msun/powerpc/fenv.h
==============================================================================
--- head/lib/msun/powerpc/fenv.h	Tue Nov 17 12:33:12 2020	(r367760)
+++ head/lib/msun/powerpc/fenv.h	Tue Nov 17 12:36:59 2020	(r367761)
@@ -148,7 +148,7 @@ fesetexceptflag(const fexcept_t *__flagp, int __except
 	union __fpscr __r;
 
 	if (__excepts & FE_INVALID)
-		__excepts |= FE_ALL_EXCEPT;
+		__excepts |= FE_ALL_INVALID;
 	__mffs(&__r);
 	__r.__bits.__reg &= ~__excepts;
 	__r.__bits.__reg |= *__flagp & __excepts;


More information about the svn-src-head mailing list