From: Richard Stallman Date: Fri, 26 Feb 1993 06:34:41 +0000 (+0000) Subject: (is_ctor_dtor): Handle NO_DOT_IN_LABEL. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7cbfceab524daac9ebd1657d63592fb6f56152b5;p=gcc.git (is_ctor_dtor): Handle NO_DOT_IN_LABEL. From-SVN: r3538 --- diff --git a/gcc/collect2.c b/gcc/collect2.c index deb5ab8b398..31b65bab62b 100644 --- a/gcc/collect2.c +++ b/gcc/collect2.c @@ -379,8 +379,13 @@ 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 }, +#else { "GLOBAL_.I.", sizeof ("GLOBAL_.I.")-1, 1, 0 }, { "GLOBAL_.D.", sizeof ("GLOBAL_.D.")-1, 2, 0 }, +#endif #else { "GLOBAL_$I$", sizeof ("GLOBAL_$I$")-1, 1, 0 }, { "GLOBAL_$D$", sizeof ("GLOBAL_$I$")-1, 2, 0 },