[PATCH 1/2] limb-alias-double.h: Fix missing semicolon
Junxian Zhu
zhujunxian@oss.cipunited.com
Mon Dec 25 10:35:48 GMT 2023
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(-)
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
--
2.43.0.windows.1
More information about the Libc-alpha
mailing list