This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] fix SPU feholdexcept to properly clear fpscr


Jeff - can you apply this?

Fix a bug in feholdexcept, use *envp not env so we clear the proper bits
in the fpscr, and don't set some random ones.

newlib ChangeLog:

2007-04-19  Patrick Mansfield <patmans@us.ibm.com>

	* feholdexcept.h: Use *envp not env so we clear the proper bits in
	the fpscr, and don't set some random ones.

Index: my-base-quilt/newlib/libm/machine/spu/headers/feholdexcept.h
===================================================================
--- my-base-quilt.orig/newlib/libm/machine/spu/headers/feholdexcept.h
+++ my-base-quilt/newlib/libm/machine/spu/headers/feholdexcept.h
@@ -44,7 +44,7 @@ static __inline int _feholdexcept(fenv_t
 
   fpscr = spu_mffpscr();
   *envp = __pack_fpscr(fpscr);
-  env = env & ~FE_ALL_EXCEPT;
+  env = *envp & ~FE_ALL_EXCEPT;
   spu_mtfpscr(__unpack_fpscr(env));
   return (0);
 }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]