diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-12-06 03:43:05 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-12-06 03:43:05 +0000 |
commit | a71a14ea4333ff4c9c415eb14181bb4fd2675acd (patch) | |
tree | 7fad100495e9ee3f1ce7d71210ceb98994f696f0 /gcc/cp/spew.c | |
parent | c0a49bd7c909b62d4dc2eeed229a5d64bb40bbd8 (diff) | |
download | ppe42-gcc-a71a14ea4333ff4c9c415eb14181bb4fd2675acd.tar.gz ppe42-gcc-a71a14ea4333ff4c9c415eb14181bb4fd2675acd.zip |
* parse.y (template_id): do_identifier for PFUNCNAMEs, too.
* spew.c (yylex): Don't do_identifier here.
* decl2.c (build_expr_from_tree): Revert last change.
* decl2.c (build_expr_from_tree): Expand the name for a method call.
* parse.y (object_template_id): Don't try to take the DECL_NAME.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@16971 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/spew.c')
-rw-r--r-- | gcc/cp/spew.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/cp/spew.c b/gcc/cp/spew.c index a6fe404bbe0..769fb2ab3a1 100644 --- a/gcc/cp/spew.c +++ b/gcc/cp/spew.c @@ -379,9 +379,6 @@ yylex () debug_yychar (yychar); #endif - if (yychar == PFUNCNAME) - yylval.ttype = do_identifier (yylval.ttype, 1); - return yychar; } |