diff options
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/ipa-profile.c | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1e596773ba0..325033610d6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2020-01-21 David Malcolm <dmalcolm@redhat.com> + + PR ipa/93315 + * ipa-profile.c (ipa_profile): Delete call_sums and set it to + NULL on exit. + 2020-01-18 Jan Hubicka <hubicka@ucw.cz> PR lto/93318 diff --git a/gcc/ipa-profile.c b/gcc/ipa-profile.c index 670d9e2fb73..8c5502bcc88 100644 --- a/gcc/ipa-profile.c +++ b/gcc/ipa-profile.c @@ -1023,6 +1023,9 @@ ipa_profile (void) if (dump_file && (dump_flags & TDF_DETAILS)) symtab->dump (dump_file); + delete call_sums; + call_sums = NULL; + return 0; } |