This is the mail archive of the
libc-alpha@sources.redhat.com
mailing list for the glibc project.
Fix a typo in linkonce read-only section name.
- From: "H. J. Lu" <hjl at lucon dot org>
- To: GNU C Library <libc-alpha at sources dot redhat dot com>
- Date: Tue, 4 May 2004 13:37:01 -0700
- Subject: Fix a typo in linkonce read-only section name.
.gnu.linkonce.r., not .gnu.linkonce.ro., is the proper linkonce
read-only section prefix.
H.J.
--
2004-05-04 H.J. Lu <hongjiu.lu@intel.com>
* sysdeps/generic/strtol_l.c (DEF): Use ".gnu.linkonce.r."
instead of ".gnu.linkonce.ro." as the prefix for linkonce
read-only section name.
--- sysdeps/generic/strtol_l.c.linkonce 2004-03-26 10:57:38.000000000 -0800
+++ sysdeps/generic/strtol_l.c 2004-05-04 13:08:38.000000000 -0700
@@ -171,7 +171,7 @@
#define DEF(TYPE, NAME) \
const TYPE NAME[] attribute_hidden \
- __attribute__((section(".gnu.linkonce.ro." #NAME))) = \
+ __attribute__((section(".gnu.linkonce.r." #NAME))) = \
{ \
F(2), F(3), F(4), F(5), F(6), F(7), F(8), F(9), F(10), \
F(11), F(12), F(13), F(14), F(15), F(16), F(17), F(18), F(19), F(20), \