diff options
author | David Malcolm <dmalcolm@redhat.com> | 2014-10-22 15:10:02 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2014-10-22 15:10:02 +0000 |
commit | 9612a39a41f7d66a303c0b6fa4e76aa739d12b9a (patch) | |
tree | 86201dbc96ee7f5cc4159e184e86abb3de8a87ea /gcc/ipa-icf.c | |
parent | 893479def2f2b98d16e7311fe3bfff58ed003467 (diff) | |
download | gcc-9612a39a41f7d66a303c0b6fa4e76aa739d12b9a.zip gcc-9612a39a41f7d66a303c0b6fa4e76aa739d12b9a.tar.gz gcc-9612a39a41f7d66a303c0b6fa4e76aa739d12b9a.tar.bz2 |
Reset global state ipa-icf.c:optimizer
gcc/
* ipa-icf.c (ipa_icf_driver): Set optimizer to NULL when done.
From-SVN: r216561
Diffstat (limited to 'gcc/ipa-icf.c')
-rw-r--r-- | gcc/ipa-icf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/ipa-icf.c b/gcc/ipa-icf.c index 0e6bd9a..d1238a4 100644 --- a/gcc/ipa-icf.c +++ b/gcc/ipa-icf.c @@ -2320,6 +2320,7 @@ ipa_icf_driver (void) optimizer->unregister_hooks (); delete optimizer; + optimizer = NULL; return 0; } |