From: Martin Liska Date: Mon, 30 Nov 2020 14:02:57 +0000 (+0100) Subject: ipa: dump symtab to emergency dump file X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=167ab4b1534a0c9d3c3e8376462822ae47e6d10d;p=gcc.git ipa: dump symtab to emergency dump file gcc/ChangeLog: * passes.c (emergency_dump_function): Dump symtab when we are in an IPA pass. --- diff --git a/gcc/passes.c b/gcc/passes.c index f71f63918f4..973c958f769 100644 --- a/gcc/passes.c +++ b/gcc/passes.c @@ -1837,6 +1837,9 @@ emergency_dump_function () fnotice (stderr, "dump file: %s\n", dump_file_name); fprintf (dump_file, "\n\n\nEMERGENCY DUMP:\n\n"); execute_function_dump (cfun, current_pass); + + if (symtab && current_pass->type == IPA_PASS) + symtab->dump (dump_file); } static struct profile_record *profile_record;