From 96d6dc006bcd91828fb5086607a39e6b17caa2e5 Mon Sep 17 00:00:00 2001 From: mmitchel Date: Sun, 13 May 2001 19:50:17 +0000 Subject: [PATCH] * stringpool.c (xxx, yyy): Remove. (get_identifier): Don't set them. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-3_0-branch@42045 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 3 +++ gcc/stringpool.c | 7 ------- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1b8d8c18f91..eb77c5fd6c3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2001-05-13 Mark Mitchell + * stringpool.c (xxx, yyy): Remove. + (get_identifier): Don't set them. + * Makefile.in (STAMP): New macro. Replace all uses of `touch' with $(STAMP). * fixinc/Makefile.in: Likewise. diff --git a/gcc/stringpool.c b/gcc/stringpool.c index 199d51ff0b9..2b4fefa9525 100644 --- a/gcc/stringpool.c +++ b/gcc/stringpool.c @@ -276,8 +276,6 @@ ggc_alloc_string (contents, length) return str->ptr; } -int xxx, yyy; - /* Return an IDENTIFIER_NODE whose name is TEXT (a null-terminated string). If an identifier with that name has previously been referred to, the same node is returned this time. */ @@ -313,11 +311,6 @@ get_identifier (text) } } - if (strncmp (text, "_Z", 2) == 0) - ++xxx; - else - ++yyy; - idp = make_node (IDENTIFIER_NODE); IDENTIFIER_LENGTH (idp) = length; IDENTIFIER_POINTER (idp) = str->ptr; -- 2.11.4.GIT