From 5afe4c0d6903027bf7835da4711a9f75b750a64d Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Mon, 13 Dec 2021 10:01:45 +0530 Subject: 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 --- sysdeps/ia64/fpu/s_tanf.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sysdeps/ia64/fpu') diff --git a/sysdeps/ia64/fpu/s_tanf.S b/sysdeps/ia64/fpu/s_tanf.S index 8bbdee9232..30d11a6f88 100644 --- a/sysdeps/ia64/fpu/s_tanf.S +++ b/sysdeps/ia64/fpu/s_tanf.S @@ -224,7 +224,7 @@ LOCAL_OBJECT_END(coeff_B) LOCAL_LIBM_ENTRY(cotf) { .mlx - getf.exp rExp = f8 // ***** Get 2ˆ17 * s + E + getf.exp rExp = f8 // ***** Get 2^17 * s + E movl rSigRcpPiby2= 0xA2F9836E4E44152A // significand of 2/Pi } { .mlx @@ -251,7 +251,7 @@ LOCAL_LIBM_END(cotf) GLOBAL_IEEE754_ENTRY(tanf) { .mlx - getf.exp rExp = f8 // ***** Get 2ˆ17 * s + E + getf.exp rExp = f8 // ***** Get 2^17 * s + E movl rSigRcpPiby2= 0xA2F9836E4E44152A // significand of 2/Pi } { .mlx -- cgit v1.2.3