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/f | |
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/f')
-rw-r--r-- | gcc/f/ChangeLog | 10 | ||||
-rw-r--r-- | gcc/f/com.c | 2 |
2 files changed, 8 insertions, 4 deletions
diff --git a/gcc/f/ChangeLog b/gcc/f/ChangeLog index 18c33b7..c2eefad 100644 --- a/gcc/f/ChangeLog +++ b/gcc/f/ChangeLog @@ -1,3 +1,7 @@ +2004-03-30 Zack Weinberg <zack@codesourcery.com> + + * com.c: Use new shorter form of GTY markers. + 2004-03-21 Joseph S. Myers <jsm@polyomino.org.uk> * g77.texi: Update link to "G++ and GCC". @@ -13,12 +17,12 @@ ftp://alpha.gnu.org/gnu/g77/projects/. (Trouble): Remove obsolete paragraph including a broken link to ftp://alpha.gnu.org/g77.plan. - + * invoke.texi (Overall Options): Remove broken reference to rat7.uue (which was of dubious copyright status anyways). * root.texi (www-burley): Fix URL. - + 2004-02-29 Roger Sayle <roger@eyesopen.com> * parse.c (ffe_parse_file): Handle the case that main_input_filename @@ -61,7 +65,7 @@ 2004-01-30 Kelley Cook <kcook@gcc.gnu.org> - * Make-lang.in (doc/g77.dvi): Use $(abs_docdir). + * Make-lang.in (doc/g77.dvi): Use $(abs_docdir). 2004-01-28 Ian Lance Taylor <ian@wasabisystems.com> diff --git a/gcc/f/com.c b/gcc/f/com.c index ebfce0a..e81d844 100644 --- a/gcc/f/com.c +++ b/gcc/f/com.c @@ -558,7 +558,7 @@ static GTY(()) struct f_binding_level *current_binding_level; /* A chain of binding_level structures awaiting reuse. */ -static GTY((deletable (""))) struct f_binding_level *free_binding_level; +static GTY((deletable)) struct f_binding_level *free_binding_level; /* The outermost binding level, for names of file scope. This is created when the compiler is started and exists |