diff options
author | Roland McGrath <roland@gnu.org> | 2004-06-15 19:54:57 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2004-06-15 19:54:57 +0000 |
commit | d90f71f08e33cd5c756909d41b7d52723b79a3f1 (patch) | |
tree | 3cece2313e9e947f70fc9796bd00e1a98d80434a /sysdeps/generic | |
parent | dd340846b1a27105e7b7091651113ea2d20bb5ed (diff) | |
download | glibc-d90f71f08e33cd5c756909d41b7d52723b79a3f1.tar.gz |
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.
Diffstat (limited to 'sysdeps/generic')
-rw-r--r-- | sysdeps/generic/strtol_l.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/generic/strtol_l.c b/sysdeps/generic/strtol_l.c index 50b7861bd0..156083c748 100644 --- a/sysdeps/generic/strtol_l.c +++ b/sysdeps/generic/strtol_l.c @@ -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), \ |