This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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),  \


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]