diff options
author | David Malcolm <dmalcolm@redhat.com> | 2020-01-14 11:32:13 -0500 |
---|---|---|
committer | David Malcolm <dmalcolm@redhat.com> | 2020-01-21 10:49:46 -0500 |
commit | 65be83b5ac0410a5e64c648c36aaf4bd10d09bf2 (patch) | |
tree | 9cc8f8e50e55265e1cf09041e5a68d5ffd5a3e37 | |
parent | 3c9e580511e713068c0ea0d7b34f6e50ebf85447 (diff) |
ipa-profile.c: reset call_sums state within ipa-profile.c (v2; PR 93315)
gcc/ChangeLog:
PR ipa/93315
* ipa-profile.c (ipa_profile): Delete call_sums and set it to
NULL on exit.
-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; } |