Commit b4e3b9e9 by Richard Stallman

(CONSTRUCTOR_NAME_FORMAT): Handle NO_DOT_IN_LABEL.

From-SVN: r3515
parent d872043a
...@@ -969,9 +969,13 @@ union tree_node ...@@ -969,9 +969,13 @@ union tree_node
#ifndef NO_DOLLAR_IN_LABEL #ifndef NO_DOLLAR_IN_LABEL
#define CONSTRUCTOR_NAME_FORMAT "_GLOBAL_$I$%s" #define CONSTRUCTOR_NAME_FORMAT "_GLOBAL_$I$%s"
#else #else
#ifdef NO_DOT_IN_LABEL
#define CONSTRUCTOR_NAME_FORMAT "____GLOBAL__I_%s"
#else
#define CONSTRUCTOR_NAME_FORMAT "_GLOBAL_.I.%s" #define CONSTRUCTOR_NAME_FORMAT "_GLOBAL_.I.%s"
#endif #endif
#endif #endif
#endif
/* The following functions accept a wide integer argument. Rather than /* The following functions accept a wide integer argument. Rather than
having to cast on every function call, we use a macro instead, that is having to cast on every function call, we use a macro instead, that is
......
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