From d1b382088a11a55c13fe0a9769a3c46a72836dd1 Mon Sep 17 00:00:00 2001 From: Taras Glek Date: Wed, 22 Apr 2009 18:29:36 +0000 Subject: hashtab.h: Update GTY annotations to new syntax 2009-04-21 Taras Glek * include/hashtab.h: Update GTY annotations to new syntax * include/splay-tree.h: Likewise gcc/ChangeLog 2009-04-21 Taras Glek * alias.c: Update GTY annotations to new syntax * basic-block.h: Likewise * bitmap.h: Likewise * c-common.h: Likewise * c-decl.c: Likewise * c-parser.c: Likewise * c-pragma.c: Likewise * c-tree.h: Likewise * cfgloop.h: Likewise * cgraph.h: Likewise * config/alpha/alpha.c: Likewise * config/arm/arm.h: Likewise * config/avr/avr.h: Likewise * config/bfin/bfin.c: Likewise * config/cris/cris.c: Likewise * config/darwin.c: Likewise * config/frv/frv.c: Likewise * config/i386/i386.c: Likewise * config/i386/i386.h: Likewise * config/i386/winnt.c: Likewise * config/ia64/ia64.h: Likewise * config/iq2000/iq2000.c: Likewise * config/mips/mips.c: Likewise * config/mmix/mmix.h: Likewise * config/pa/pa.c: Likewise * config/pa/pa.h: Likewise * config/rs6000/rs6000.c: Likewise * config/s390/s390.c: Likewise * config/sparc/sparc.c: Likewise * config/xtensa/xtensa.c: Likewise * cselib.h: Likewise * dbxout.c: Likewise * dwarf2out.c: Likewise * except.c: Likewise * except.h: Likewise * fixed-value.h: Likewise * function.c: Likewise * function.h: Likewise * gimple.h: Likewise * integrate.c: Likewise * optabs.c: Likewise * output.h: Likewise * real.h: Likewise * rtl.h: Likewise * stringpool.c: Likewise * tree-data-ref.c: Likewise * tree-flow.h: Likewise * tree-scalar-evolution.c: Likewise * tree-ssa-address.c: Likewise * tree-ssa-alias.h: Likewise * tree-ssa-operands.h: Likewise * tree.c: Likewise * tree.h: Likewise * varasm.c: Likewise * varray.h: Likewise * vec.h: Likewise * coretypes.h: Do not define GTY macro if it is already defined * doc/gty.texi: Update GTY documentation to new syntax * gengtype-lex.l: Enforce attribute-like syntax for GTY annotations on structs * gengtype-parse.c: Likewise gcc/ada/ChangeLog 2009-04-21 Taras Glek * gcc-interface/ada-tree.h: Update GTY annotations to new syntax * gcc-interface/trans.c: Likewise * gcc-interface/utils.c: Likewise gcc/cp/ChangeLog 2009-04-21 Taras Glek * cp-tree.h: Update GTY annotations to new syntax * decl.c: Likewise * mangle.c: Likewise * name-lookup.c: Likewise * name-lookup.h: Likewise * parser.c: Likewise * pt.c: Likewise * rtti.c: Likewise * semantics.c: Likewise * typeck2.c: Likewise gcc/fortran/ChangeLog 2009-04-21 Taras Glek * f95-lang.c: Update GTY annotations to new syntax * trans-intrinsic.c: Likewise * trans-io.c: Likewise * trans.h: Likewise gcc/java/ChangeLog 2009-04-21 Taras Glek * builtins.c: Update GTY annotations to new syntax * decl.c: Likewise * java-tree.h: Likewise * jcf.h: Likewise * lang.c: Likewise gcc/objc/ChangeLog 2009-04-21 Taras Glek * objc-act.c: Update GTY annotations to new syntax * objc-act.h: Likewise libcpp/ChangeLog 2009-04-21 Taras Glek * include/cpp-id-data.h: Update GTY annotations to new syntax * include/cpplib.h: Likewise * include/line-map.h: Likewise * include/symtab.h: Likewise From-SVN: r146607 --- gcc/fortran/ChangeLog | 7 +++++++ gcc/fortran/f95-lang.c | 20 ++++++++------------ gcc/fortran/trans-intrinsic.c | 3 +-- gcc/fortran/trans-io.c | 6 ++---- gcc/fortran/trans.h | 12 ++++-------- 5 files changed, 22 insertions(+), 26 deletions(-) (limited to 'gcc/fortran') diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 5932195..2932af3 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,10 @@ +2009-04-21 Taras Glek + + * f95-lang.c: Update GTY annotations to new syntax. + * trans-intrinsic.c: Likewise. + * trans-io.c: Likewise. + * trans.h: Likewise. + 2009-04-22 Janus Weil PR fortran/39735 diff --git a/gcc/fortran/f95-lang.c b/gcc/fortran/f95-lang.c index b8f2d22..1aab3bf 100644 --- a/gcc/fortran/f95-lang.c +++ b/gcc/fortran/f95-lang.c @@ -52,19 +52,17 @@ along with GCC; see the file COPYING3. If not see /* Language-dependent contents of an identifier. */ -struct lang_identifier -GTY(()) -{ +struct GTY(()) +lang_identifier { struct tree_identifier common; }; /* The resulting tree type. */ -union lang_tree_node -GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"), +union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"), chain_next ("(union lang_tree_node *)TREE_CHAIN (&%h.generic)"))) -{ +lang_tree_node { union tree_node GTY((tag ("0"), desc ("tree_node_structure (&%h)"))) generic; struct lang_identifier GTY((tag ("1"))) identifier; @@ -74,9 +72,8 @@ GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"), that keep track of the progress of compilation of the current function. Used for nested functions. */ -struct language_function -GTY(()) -{ +struct GTY(()) +language_function { /* struct gfc_language_function base; */ struct binding_level *binding_level; }; @@ -309,9 +306,8 @@ gfc_print_identifier (FILE * file ATTRIBUTE_UNUSED, Binding contours are used to create GCC tree BLOCK nodes. */ -struct binding_level -GTY(()) -{ +struct GTY(()) +binding_level { /* A chain of ..._DECL nodes for all variables, constants, functions, parameters and type declarations. These ..._DECL nodes are chained through the TREE_CHAIN field. Note that these ..._DECL nodes are stored diff --git a/gcc/fortran/trans-intrinsic.c b/gcc/fortran/trans-intrinsic.c index 47960e9..8705b94 100644 --- a/gcc/fortran/trans-intrinsic.c +++ b/gcc/fortran/trans-intrinsic.c @@ -45,8 +45,7 @@ along with GCC; see the file COPYING3. If not see /* This maps fortran intrinsic math functions to external library or GCC builtin functions. */ -typedef struct gfc_intrinsic_map_t GTY(()) -{ +typedef struct GTY(()) gfc_intrinsic_map_t { /* The explicit enum is required to work around inadequacies in the garbage collection/gengtype parsing mechanism. */ enum gfc_isym_id id; diff --git a/gcc/fortran/trans-io.c b/gcc/fortran/trans-io.c index 40cb1f2..b8ff5f3 100644 --- a/gcc/fortran/trans-io.c +++ b/gcc/fortran/trans-io.c @@ -64,8 +64,7 @@ enum iofield_type IOPARM_type_num }; -typedef struct gfc_st_parameter_field GTY(()) -{ +typedef struct GTY(()) gfc_st_parameter_field { const char *name; unsigned int mask; enum ioparam_type param_type; @@ -75,8 +74,7 @@ typedef struct gfc_st_parameter_field GTY(()) } gfc_st_parameter_field; -typedef struct gfc_st_parameter GTY(()) -{ +typedef struct GTY(()) gfc_st_parameter { const char *name; tree type; } diff --git a/gcc/fortran/trans.h b/gcc/fortran/trans.h index 2c531ec..b6b3279 100644 --- a/gcc/fortran/trans.h +++ b/gcc/fortran/trans.h @@ -429,8 +429,7 @@ void gfc_generate_block_data (gfc_namespace *); /* Output a decl for a module variable. */ void gfc_generate_module_vars (gfc_namespace *); -struct module_htab_entry GTY(()) -{ +struct GTY(()) module_htab_entry { const char *name; tree namespace_decl; htab_t GTY ((param_is (union tree_node))) decls; @@ -543,8 +542,7 @@ extern GTY(()) tree gfor_fndecl_associated; /* Math functions. Many other math functions are handled in trans-intrinsic.c. */ -typedef struct gfc_powdecl_list GTY(()) -{ +typedef struct GTY(()) gfc_powdecl_list { tree integer; tree real; tree cmplx; @@ -615,8 +613,7 @@ enum gfc_array_kind }; /* Array types only. */ -struct lang_type GTY(()) -{ +struct GTY(()) lang_type { int rank; enum gfc_array_kind akind; tree lbound[GFC_MAX_DIMENSIONS]; @@ -629,8 +626,7 @@ struct lang_type GTY(()) tree span; }; -struct lang_decl GTY(()) -{ +struct GTY(()) lang_decl { /* Dummy variables. */ tree saved_descriptor; /* Assigned integer nodes. Stringlength is the IO format string's length. -- cgit v1.1