diff options
author | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-21 15:58:35 +0000 |
---|---|---|
committer | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-21 15:58:35 +0000 |
commit | 82863d5e235b06f2fdbb514b5db470bd124814e8 (patch) | |
tree | 1dd385a111004f2f27510e3697c07240d8fb652f /gcc/tree.h | |
parent | f70d66411c6de03f36070c1956ae3ef820efd74a (diff) | |
download | gcc-82863d5e235b06f2fdbb514b5db470bd124814e8.tar.gz |
2001-09-19 Alexandre Petit-Bianco <apbianco@redhat.com>
* stringpool.c (get_identifier_with_length): New function.
* tree.h (get_identifier_with_length): New prototype.
( http://gcc.gnu.org/ml/gcc-patches/2001-09/msg00779.html )
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45731 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index aee84340355..fe94fa6905a 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -1990,6 +1990,11 @@ extern tree make_tree_vec PARAMS ((int)); extern tree get_identifier PARAMS ((const char *)); +/* Identical to get_identifier, except that the length is assumed + known. */ + +extern tree get_identifier_with_length PARAMS ((const char *, unsigned int)); + /* If an identifier with the name TEXT (a null-terminated string) has previously been referred to, return that node; otherwise return NULL_TREE. */ |