diff options
Diffstat (limited to 'gcc/diagnostic.c')
-rw-r--r-- | gcc/diagnostic.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gcc/diagnostic.c b/gcc/diagnostic.c index 881da0b8045..642cbe38b9a 100644 --- a/gcc/diagnostic.c +++ b/gcc/diagnostic.c @@ -177,6 +177,15 @@ diagnostic_finish (diagnostic_context *context) } diagnostic_file_cache_fini (); + + XDELETEVEC (context->classify_diagnostic); + context->classify_diagnostic = NULL; + + /* diagnostic_initialize allocates context->printer using XNEW + and placement-new. */ + context->printer->~pretty_printer (); + XDELETE (context->printer); + context->printer = NULL; } /* Initialize DIAGNOSTIC, where the message MSG has already been @@ -342,7 +351,7 @@ diagnostic_show_locus (diagnostic_context * context, static const char * const bt_stop[] = { "main", - "toplev_main", + "toplev::main", "execute_one_pass", "compile_file", }; |