Commit 7cbfceab by Richard Stallman

(is_ctor_dtor): Handle NO_DOT_IN_LABEL.

From-SVN: r3538
parent 58f066d1
...@@ -379,8 +379,13 @@ is_ctor_dtor (s) ...@@ -379,8 +379,13 @@ is_ctor_dtor (s)
static struct names special[] = { static struct names special[] = {
#ifdef NO_DOLLAR_IN_LABEL #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_.I.", sizeof ("GLOBAL_.I.")-1, 1, 0 },
{ "GLOBAL_.D.", sizeof ("GLOBAL_.D.")-1, 2, 0 }, { "GLOBAL_.D.", sizeof ("GLOBAL_.D.")-1, 2, 0 },
#endif
#else #else
{ "GLOBAL_$I$", sizeof ("GLOBAL_$I$")-1, 1, 0 }, { "GLOBAL_$I$", sizeof ("GLOBAL_$I$")-1, 1, 0 },
{ "GLOBAL_$D$", sizeof ("GLOBAL_$I$")-1, 2, 0 }, { "GLOBAL_$D$", sizeof ("GLOBAL_$I$")-1, 2, 0 },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment