diff options
author | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-04 07:11:05 +0000 |
---|---|---|
committer | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-04 07:11:05 +0000 |
commit | 1f3233d13f58417984cb2239d328b65e8d172744 (patch) | |
tree | 720630adca0f6b357e05c4feb8cbe33d556925ce /gcc/cp/lex.h | |
parent | 0dc11899d8781bca1da5f4421327d61890424808 (diff) | |
download | gcc-1f3233d13f58417984cb2239d328b65e8d172744.tar.gz |
Merge from pch-branch up to tag pch-commit-20020603.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54232 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/lex.h')
-rw-r--r-- | gcc/cp/lex.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cp/lex.h b/gcc/cp/lex.h index 9f86833777b..15de16866b7 100644 --- a/gcc/cp/lex.h +++ b/gcc/cp/lex.h @@ -68,15 +68,15 @@ typedef unsigned long RID_BIT_TYPE; /* assumed at least 32 bits */ yylex must look this up to detect typedefs, which get token type TYPENAME, so it is left around in case the identifier is not a typedef but is used in a context which makes it a reference to a variable. */ -extern tree lastiddecl; +extern GTY(()) tree lastiddecl; /* Back-door communication channel to the lexer. */ extern int looking_for_typename; extern int looking_for_template; /* Tell the lexer where to look for names. */ -extern tree got_scope; -extern tree got_object; +extern GTY(()) tree got_scope; +extern GTY(()) tree got_object; /* Pending language change. Positive is push count, negative is pop count. */ |