diff options
Diffstat (limited to 'gcc/c')
-rw-r--r-- | gcc/c/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/c/c-decl.c | 12 |
2 files changed, 4 insertions, 12 deletions
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index a70eaf9..0318bcf 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,7 @@ +2017-05-22 Nathan Sidwell <nathan@acm.org> + + * c-decl.c (c_parse_final_cleanups): Drop TDI_tu handling. + 2017-05-19 Thomas Schwinge <thomas@codesourcery.com> * c-parser.c (c_parser_omp_clause_default): Handle diff --git a/gcc/c/c-decl.c b/gcc/c/c-decl.c index 237e910..f2b8096 100644 --- a/gcc/c/c-decl.c +++ b/gcc/c/c-decl.c @@ -11214,18 +11214,6 @@ c_parse_final_cleanups (void) dump_ada_specs (collect_all_refs, NULL); } - if (ext_block) - { - tree tmp = BLOCK_VARS (ext_block); - dump_flags_t flags; - FILE * stream = dump_begin (TDI_tu, &flags); - if (stream && tmp) - { - dump_node (tmp, flags & ~TDF_SLIM, stream); - dump_end (TDI_tu, stream); - } - } - /* Process all file scopes in this compilation, and the external_scope, through wrapup_global_declarations. */ FOR_EACH_VEC_ELT (*all_translation_units, i, t) |