aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2001-03-21 19:53:50 -0500
committerJason Merrill <jason@gcc.gnu.org>2001-03-21 19:53:50 -0500
commit64d9c3fede833ead77f8379349cf1dfabfe7f69c (patch)
tree371485407c31108950fa8442cc454dd40ecbd81e /gcc/tree.c
parent52d76e11287d0e4c7d9464cc4a5d4462da1425d2 (diff)
downloadgcc-64d9c3fede833ead77f8379349cf1dfabfe7f69c.zip
gcc-64d9c3fede833ead77f8379349cf1dfabfe7f69c.tar.gz
gcc-64d9c3fede833ead77f8379349cf1dfabfe7f69c.tar.bz2
collect2.c (is_ctor_dtor): Always use '_' in the file fn names, not '.' or '$'.
* collect2.c (is_ctor_dtor): Always use '_' in the file fn names, not '.' or '$'. * tree.c (FILE_FUNCTION_FORMAT): Likewise. * varasm.c (CHKR_PREFIX): Likewise. * error.c (GLOBAL_THING): Always use '__'. From-SVN: r40723
Diffstat (limited to 'gcc/tree.c')
-rw-r--r--gcc/tree.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/gcc/tree.c b/gcc/tree.c
index d05f3ca..c4334ce 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -4448,15 +4448,7 @@ dump_tree_statistics ()
#define FILE_FUNCTION_PREFIX_LEN 9
-#ifndef NO_DOLLAR_IN_LABEL
-#define FILE_FUNCTION_FORMAT "_GLOBAL_$%s$%s"
-#else /* NO_DOLLAR_IN_LABEL */
-#ifndef NO_DOT_IN_LABEL
-#define FILE_FUNCTION_FORMAT "_GLOBAL_.%s.%s"
-#else /* NO_DOT_IN_LABEL */
#define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
-#endif /* NO_DOT_IN_LABEL */
-#endif /* NO_DOLLAR_IN_LABEL */
/* Appends 6 random characters to TEMPLATE to (hopefully) avoid name
clashes in cases where we can't reliably choose a unique name.