PATCH: PR math/12775: Typo in sysdeps/x86_64/fpu/e_powl.S

H.J. Lu hongjiu.lu@intel.com
Wed May 18 13:31:00 GMT 2011


Hi,

`0x' is missing.  This patch fixes it.


H.J.
--
2011-05-17  H.J. Lu  <hongjiu.lu@intel.com>

	PR math/12775
	* sysdeps/x86_64/fpu/e_powl.S: Fix a typo.

diff --git a/sysdeps/x86_64/fpu/e_powl.S b/sysdeps/x86_64/fpu/e_powl.S
index 4959bea..f6a09c8 100644
--- a/sysdeps/x86_64/fpu/e_powl.S
+++ b/sysdeps/x86_64/fpu/e_powl.S
@@ -154,7 +154,7 @@ ENTRY(__ieee754_powl)
 	fucompp			// 1.0 : x : y
 	fnstsw
 	fxch			// x : 1.0 : y
-	test	$4500,%eax
+	test	$0x4500,%eax
 	jz	7f
 	fsub	%st(1)		// x-1 : 1.0 : y
 	fyl2xp1			// log2(x) : y



More information about the Libc-alpha mailing list