diff options
author | Richard Stallman <rms@gnu.org> | 1992-11-30 22:59:42 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-11-30 22:59:42 +0000 |
commit | d5c97601dc3f71c7fa32d2e3cf87262063eda34f (patch) | |
tree | 496ad2694aed85b28c66a1486c49864ba5de1234 | |
parent | ca98edf91c0f3d5363e7f9186467ba368e0b8f9b (diff) | |
download | gcc-d5c97601dc3f71c7fa32d2e3cf87262063eda34f.zip gcc-d5c97601dc3f71c7fa32d2e3cf87262063eda34f.tar.gz gcc-d5c97601dc3f71c7fa32d2e3cf87262063eda34f.tar.bz2 |
(CONSTRUCTOR_NAME_FORMAT): Let config.h override this.
From-SVN: r2817
-rw-r--r-- | gcc/tree.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -965,11 +965,13 @@ union tree_node #endif /* Format for global names of constructor and destructor functions. */ +#ifndef CONSTRUCTOR_NAME_FORMAT /* Some machines need to override this. */ #ifndef NO_DOLLAR_IN_LABEL #define CONSTRUCTOR_NAME_FORMAT "_GLOBAL_$I$%s" #else #define CONSTRUCTOR_NAME_FORMAT "_GLOBAL_.I.%s" #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 |