[1/2] limb-alias-double.h: Fix missing semicolon

Message ID 20231225103548.1615-3-zhujunxian@oss.cipunited.com
State Dropped
Headers
Series Add hard-float rounding instructions support for MIPS architecture |

Checks

Context Check Description
redhat-pt-bot/TryBot-apply_patch success Patch applied to master at the time it was sent
linaro-tcwg-bot/tcwg_glibc_build--master-aarch64 success Testing passed
linaro-tcwg-bot/tcwg_glibc_check--master-aarch64 success Testing passed
linaro-tcwg-bot/tcwg_glibc_build--master-arm success Testing passed
linaro-tcwg-bot/tcwg_glibc_check--master-arm success Testing passed

Commit Message

Junxian Zhu Dec. 25, 2023, 10:35 a.m. UTC
  From: Junxian Zhu <zhujunxian@oss.cipunited.com>

MIPS o32 defined NO_LONG_DOUBLE. Missing semicolon at the end of weak_alias and strong_alias will cause syntax error during assembly building.

Signed-off-by: Rong Zhang <rongrong@oss.cipunited.com>
Signed-off-by: Junxian Zhu <zhujunxian@oss.cipunited.com>
---
 sysdeps/generic/libm-alias-double.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
  

Patch

diff --git a/sysdeps/generic/libm-alias-double.h b/sysdeps/generic/libm-alias-double.h
index 65ba382da9..e68f1e5ad6 100644
--- a/sysdeps/generic/libm-alias-double.h
+++ b/sysdeps/generic/libm-alias-double.h
@@ -56,8 +56,8 @@ 
    obsolescent functions not provided for _FloatN types.  */
 #ifdef NO_LONG_DOUBLE
 # define libm_alias_double_r(from, to, r)	\
-  weak_alias (from ## r, to ## r)		\
-  strong_alias (from ## r, from ## l ## r)	\
+  weak_alias (from ## r, to ## r);		\
+  strong_alias (from ## r, from ## l ## r);	\
   weak_alias (from ## r, to ## l ## r);		\
   libm_alias_double_other_r (from, to, r)
 #else