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/jcf.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/jcf.h')
-rw-r--r-- | gcc/java/jcf.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/java/jcf.h b/gcc/java/jcf.h index b7a6f38..27e0761 100644 --- a/gcc/java/jcf.h +++ b/gcc/java/jcf.h @@ -102,19 +102,19 @@ struct ZipDirectory; /* JCF encapsulates the state of reading a Java Class File. */ typedef struct JCF GTY(()) { - unsigned char * GTY ((skip (""))) buffer; - unsigned char * GTY ((skip (""))) buffer_end; - unsigned char * GTY ((skip (""))) read_ptr; - unsigned char * GTY ((skip (""))) read_end; + unsigned char * GTY ((skip)) buffer; + unsigned char * GTY ((skip)) buffer_end; + unsigned char * GTY ((skip)) read_ptr; + unsigned char * GTY ((skip)) read_end; int java_source : 1; int right_zip : 1; int finished : 1; jcf_filbuf_t filbuf; - PTR GTY ((skip (""))) read_state; + PTR GTY ((skip)) read_state; const char *filename; const char *classname; /* Directory entry where it was found. */ - struct ZipDirectory * GTY ((skip (""))) zipd; + struct ZipDirectory * GTY ((skip)) zipd; JCF_u2 access_flags; JCF_u2 this_class; JCF_u2 super_class; |