From b4e3b9e995973c26a42fad75d3c60569d37f6d6a Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Tue, 23 Feb 1993 19:55:23 +0000 Subject: [PATCH] (CONSTRUCTOR_NAME_FORMAT): Handle NO_DOT_IN_LABEL. From-SVN: r3515 --- gcc/tree.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gcc/tree.h b/gcc/tree.h index eac4dbe66df..3d020bba9a9 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -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 -- 2.30.2