diff options
author | Zack Weinberg <zack@gcc.gnu.org> | 2004-03-30 19:19:06 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2004-03-30 19:19:06 +0000 |
commit | 1431042ef1f76baf550557885af9945aa76148e8 (patch) | |
tree | eb5c785a332c675110a75f8bdba7609d72204214 /gcc/java/parse.h | |
parent | 9ffab06b25e310701c8fd82d2c65e265b49ba299 (diff) | |
download | gcc-1431042ef1f76baf550557885af9945aa76148e8.zip gcc-1431042ef1f76baf550557885af9945aa76148e8.tar.gz gcc-1431042ef1f76baf550557885af9945aa76148e8.tar.bz2 |
gengtype.c (create_option): New function.
* gengtype.c (create_option): New function.
* gengtype.h: Prototype it.
* gengtype-yacc.y (stringseq): New rule.
(option): Use create_option. Add new bare ID production. Use
stringseq, not STRING directly.
* alias.c, bitmap.c, c-decl.c, cgraph.h, cpplib.h, cselib.h
* dwarf2out.c, emit-rtl.c, function.h, lists.c, tree.h
* varray.h, config/alpha/alpha.c, cp/name-lookup.c, cp/parser.c
* f/com.c, java/builtins.c, java/expr.c, java/jcf.h, java/parse.h:
Use new shorter form of GTY markers.
* doc/gty.texi: Rewrite.
From-SVN: r80091
Diffstat (limited to 'gcc/java/parse.h')
-rw-r--r-- | gcc/java/parse.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/java/parse.h b/gcc/java/parse.h index f845ce2..bedf706 100644 --- a/gcc/java/parse.h +++ b/gcc/java/parse.h @@ -728,10 +728,10 @@ struct parser_ctxt GTY(()) { const char *filename; /* Current filename */ struct parser_ctxt *next; - java_lexer * GTY((skip (""))) lexer; /* Current lexer state */ + java_lexer * GTY((skip)) lexer; /* Current lexer state */ char marker_begining; /* Marker. Should be a sub-struct */ - struct java_line * GTY ((skip (""))) p_line; /* Previous line */ - struct java_line * GTY ((skip (""))) c_line; /* Current line */ + struct java_line * GTY ((skip)) p_line; /* Previous line */ + struct java_line * GTY ((skip)) c_line; /* Current line */ java_lc elc; /* Error's line column info */ int ccb_indent; /* Keep track of {} indent, lexer */ int first_ccb_indent1; /* First { at ident level 1 */ @@ -739,7 +739,7 @@ struct parser_ctxt GTY(()) { int parser_ccb_indent; /* Keep track of {} indent, parser */ int osb_depth; /* Current depth of [ in an expression */ int osb_limit; /* Limit of this depth */ - int * GTY ((skip (""))) osb_number; /* Keep track of ['s */ + int * GTY ((skip)) osb_number; /* Keep track of ['s */ int lineno; /* Current lineno */ char marker_end; /* End marker. Should be a sub-struct */ @@ -774,7 +774,7 @@ struct parser_ctxt GTY(()) { /* These two lists won't survive file traversal */ tree class_list; /* List of classes in a CU */ - jdeplist * GTY((skip (""))) classd_list; /* Classe dependencies in a CU */ + jdeplist * GTY((skip)) classd_list; /* Classe dependencies in a CU */ tree current_parsed_class; /* Class currently parsed */ tree current_parsed_class_un; /* Curr. parsed class unqualified name */ |