(is_ctor_dtor): Handle NO_DOT_IN_LABEL.

From-SVN: r3538
This commit is contained in:
Richard Stallman 1993-02-26 06:34:41 +00:00
parent 58f066d149
commit 7cbfceab52
1 changed files with 5 additions and 0 deletions

View File

@ -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 },