about summary refs log tree commit diff
path: root/sysdeps/i386/fpu
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@sourceware.org>2021-12-13 10:01:45 +0530
committerSiddhesh Poyarekar <siddhesh@sourceware.org>2021-12-13 10:01:45 +0530
commit5afe4c0d6903027bf7835da4711a9f75b750a64d (patch)
tree0a2c2dbf4f8968fdcd72bd98585fc09a5968c30d /sysdeps/i386/fpu
parent23645707f12f2dd9d80b51effb2d9618a7b65565 (diff)
downloadglibc-5afe4c0d6903027bf7835da4711a9f75b750a64d.tar.gz
glibc-5afe4c0d6903027bf7835da4711a9f75b750a64d.tar.xz
glibc-5afe4c0d6903027bf7835da4711a9f75b750a64d.zip
Cleanup encoding in comments
Replace non-UTF-8 and non-ASCII characters in comments with their UTF-8
equivalents so that files don't end up with mixed encodings.  With this,
all files (except tests that actually test different encodings) have a
single encoding.

Signed-off-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Diffstat (limited to 'sysdeps/i386/fpu')
-rw-r--r--sysdeps/i386/fpu/e_pow.S20
-rw-r--r--sysdeps/i386/fpu/e_powl.S20
2 files changed, 20 insertions, 20 deletions
diff --git a/sysdeps/i386/fpu/e_pow.S b/sysdeps/i386/fpu/e_pow.S
index 1ea6f09c15..a3280bf144 100644
--- a/sysdeps/i386/fpu/e_pow.S
+++ b/sysdeps/i386/fpu/e_pow.S
@@ -79,7 +79,7 @@ ENTRY(__ieee754_pow)
 	cmpb	$0x40, %ah	// is y == 0 ?
 	je	11f
 
-	cmpb	$0x05, %ah	// is y == ±inf ?
+	cmpb	$0x05, %ah	// is y == ±inf ?
 	je	12f
 
 	cmpb	$0x01, %ah	// is y == NaN ?
@@ -95,10 +95,10 @@ ENTRY(__ieee754_pow)
 	movb	%ah, %dh
 	andb	$0x45, %ah
 	cmpb	$0x40, %ah
-	je	20f		// x is ±0
+	je	20f		// x is ±0
 
 	cmpb	$0x05, %ah
-	je	15f		// x is ±inf
+	je	15f		// x is ±inf
 
 	cmpb	$0x01, %ah
 	je	32f		// x is NaN
@@ -173,7 +173,7 @@ ENTRY(__ieee754_pow)
 	DBL_NARROW_EVAL_UFLOW_NONNAN
 	ret
 
-	/* y is ±NAN */
+	/* y is ±NAN */
 30:	fldl	4(%esp)		// x : y
 	fldl	MO(one)		// 1.0 : x : y
 	fucomp	%st(1)		// x : y
@@ -267,13 +267,13 @@ ENTRY(__ieee754_pow)
 	ret
 
 
-	// pow(x,±0) = 1
+	// pow(x,±0) = 1
 	.align ALIGNARG(4)
 11:	fstp	%st(0)		// pop y
 	fldl	MO(one)
 	ret
 
-	// y == ±inf
+	// y == ±inf
 	.align ALIGNARG(4)
 12:	fstp	%st(0)		// pop y
 	fldl	MO(one)		// 1
@@ -304,7 +304,7 @@ ENTRY(__ieee754_pow)
 
 	cfi_adjust_cfa_offset (8)
 	.align ALIGNARG(4)
-	// x is ±inf
+	// x is ±inf
 15:	fstp	%st(0)		// y
 	testb	$2, %dh
 	jz	16f		// jump if x == +inf
@@ -362,12 +362,12 @@ ENTRY(__ieee754_pow)
 
 	cfi_adjust_cfa_offset (8)
 	.align ALIGNARG(4)
-	// x is ±0
+	// x is ±0
 20:	fstp	%st(0)		// y
 	testb	$2, %dl
 	jz	21f		// y > 0
 
-	// x is ±0 and y is < 0.  We must find out whether y is an odd integer.
+	// x is ±0 and y is < 0.  We must find out whether y is an odd integer.
 	testb	$2, %dh
 	jz	25f
 
@@ -414,7 +414,7 @@ ENTRY(__ieee754_pow)
 
 	cfi_adjust_cfa_offset (8)
 	.align ALIGNARG(4)
-	// x is ±0 and y is > 0.  We must find out whether y is an odd integer.
+	// x is ±0 and y is > 0.  We must find out whether y is an odd integer.
 21:	testb	$2, %dh
 	jz	22f
 
diff --git a/sysdeps/i386/fpu/e_powl.S b/sysdeps/i386/fpu/e_powl.S
index 2826ba4980..50692c7381 100644
--- a/sysdeps/i386/fpu/e_powl.S
+++ b/sysdeps/i386/fpu/e_powl.S
@@ -85,7 +85,7 @@ ENTRY(__ieee754_powl)
 	cmpb	$0x40, %ah	// is y == 0 ?
 	je	11f
 
-	cmpb	$0x05, %ah	// is y == ±inf ?
+	cmpb	$0x05, %ah	// is y == ±inf ?
 	je	12f
 
 	cmpb	$0x01, %ah	// is y == NaN ?
@@ -101,10 +101,10 @@ ENTRY(__ieee754_powl)
 	movb	%ah, %dh
 	andb	$0x45, %ah
 	cmpb	$0x40, %ah
-	je	20f		// x is ±0
+	je	20f		// x is ±0
 
 	cmpb	$0x05, %ah
-	je	15f		// x is ±inf
+	je	15f		// x is ±inf
 
 	cmpb	$0x01, %ah
 	je	32f		// x is NaN
@@ -195,7 +195,7 @@ ENTRY(__ieee754_powl)
 	LDBL_CHECK_FORCE_UFLOW_NONNAN
 	ret
 
-	/* y is ±NAN */
+	/* y is ±NAN */
 30:	fldt	4(%esp)		// x : y
 	fldl	MO(one)		// 1.0 : x : y
 	fucomp	%st(1)		// x : y
@@ -247,7 +247,7 @@ ENTRY(__ieee754_powl)
 	cfi_adjust_cfa_offset (-36)
 	ret
 
-	// pow(x,±0) = 1, unless x is sNaN
+	// pow(x,±0) = 1, unless x is sNaN
 	.align ALIGNARG(4)
 11:	fstp	%st(0)		// pop y
 	fldt	4(%esp)		// x
@@ -265,7 +265,7 @@ ENTRY(__ieee754_powl)
 	fadd	%st(0)
 	ret
 
-	// y == ±inf
+	// y == ±inf
 	.align ALIGNARG(4)
 12:	fstp	%st(0)		// pop y
 	fldl	MO(one)		// 1
@@ -297,7 +297,7 @@ ENTRY(__ieee754_powl)
 
 	cfi_adjust_cfa_offset (8)
 	.align ALIGNARG(4)
-	// x is ±inf
+	// x is ±inf
 15:	fstp	%st(0)		// y
 	testb	$2, %dh
 	jz	16f		// jump if x == +inf
@@ -358,12 +358,12 @@ ENTRY(__ieee754_powl)
 
 	cfi_adjust_cfa_offset (8)
 	.align ALIGNARG(4)
-	// x is ±0
+	// x is ±0
 20:	fstp	%st(0)		// y
 	testb	$2, %dl
 	jz	21f		// y > 0
 
-	// x is ±0 and y is < 0.  We must find out whether y is an odd integer.
+	// x is ±0 and y is < 0.  We must find out whether y is an odd integer.
 	testb	$2, %dh
 	jz	25f
 
@@ -413,7 +413,7 @@ ENTRY(__ieee754_powl)
 
 	cfi_adjust_cfa_offset (8)
 	.align ALIGNARG(4)
-	// x is ±0 and y is > 0.  We must find out whether y is an odd integer.
+	// x is ±0 and y is > 0.  We must find out whether y is an odd integer.
 21:	testb	$2, %dh
 	jz	22f