diff options
author | Alan Modra <amodra@gmail.com> | 2016-05-28 09:52:56 +0930 |
---|---|---|
committer | Alan Modra <amodra@gcc.gnu.org> | 2016-05-28 09:52:56 +0930 |
commit | f3c82ff9a9f831481d45a370476743d73f6704a3 (patch) | |
tree | 2fde116e9c888c2b5e7311525ef3db988f2ab571 /gcc/ira.c | |
parent | a9ef1353bd42c0da1824fe25bafbee6e5eda14bd (diff) | |
download | gcc-f3c82ff9a9f831481d45a370476743d73f6704a3.zip gcc-f3c82ff9a9f831481d45a370476743d73f6704a3.tar.gz gcc-f3c82ff9a9f831481d45a370476743d73f6704a3.tar.bz2 |
ira.c bb_loop_depth again
Follow the same practice as other places in ira.c, where
free_dominance_info is called along with loop_optimizer_finalize. Not
doing so causes an ICE on gcc-5-branch, so avoid that possibility on
trunk.
PR rtl-optimization/71275
* ira.c (ira): Free dominance info.
From-SVN: r236843
Diffstat (limited to 'gcc/ira.c')
-rw-r--r-- | gcc/ira.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -5188,6 +5188,7 @@ ira (FILE *f) add_store_equivs (); loop_optimizer_finalize (); + free_dominance_info (CDI_DOMINATORS); end_alias_analysis (); free (reg_equiv); |