(CONSTRUCTOR_NAME_FORMAT): Handle NO_DOT_IN_LABEL.

From-SVN: r3515
This commit is contained in:
Richard Stallman 1993-02-23 19:55:23 +00:00
parent d872043a17
commit b4e3b9e995
1 changed files with 4 additions and 0 deletions

View File

@ -969,9 +969,13 @@ union tree_node
#ifndef NO_DOLLAR_IN_LABEL
#define CONSTRUCTOR_NAME_FORMAT "_GLOBAL_$I$%s"
#else
#ifdef NO_DOT_IN_LABEL
#define CONSTRUCTOR_NAME_FORMAT "____GLOBAL__I_%s"
#else
#define CONSTRUCTOR_NAME_FORMAT "_GLOBAL_.I.%s"
#endif
#endif
#endif
/* The following functions accept a wide integer argument. Rather than
having to cast on every function call, we use a macro instead, that is