(is_ctor_dtor): Delete leading _'s from sym names
authorRichard Stallman <rms@gnu.org>
Wed, 21 Jul 1993 03:36:21 +0000 (03:36 +0000)
committerRichard Stallman <rms@gnu.org>
Wed, 21 Jul 1993 03:36:21 +0000 (03:36 +0000)
in `special' table, in neither-dots-nor-dollars case.

From-SVN: r4947

gcc/collect2.c

index 464eb44cf9bb018a56034691f35ecc1b3f86a867..e65cc16e2a818fb49500733a77799fe005248ef8 100644 (file)
@@ -384,8 +384,8 @@ is_ctor_dtor (s)
   static struct names special[] = {
 #ifdef NO_DOLLAR_IN_LABEL
 #ifdef NO_DOT_IN_LABEL
-    { "___GLOBAL__I_", sizeof ("___GLOBAL__I_")-1, 1, 0 },
-    { "___GLOBAL__D_", sizeof ("___GLOBAL__D_")-1, 2, 0 },
+    { "GLOBAL__I_", sizeof ("___GLOBAL__I_")-1, 1, 0 },
+    { "GLOBAL__D_", sizeof ("___GLOBAL__D_")-1, 2, 0 },
 #else
     { "GLOBAL_.I.", sizeof ("GLOBAL_.I.")-1, 1, 0 },
     { "GLOBAL_.D.", sizeof ("GLOBAL_.D.")-1, 2, 0 },