Avoid unused sbitmap in update_ssa
authorRichard Biener <rguenther@suse.de>
Fri, 1 Jul 2022 11:59:32 +0000 (13:59 +0200)
committerRichard Biener <rguenther@suse.de>
Fri, 1 Jul 2022 13:21:38 +0000 (15:21 +0200)
commit63abe04999283582b258adf60da6c19d541ebc68
tree0eee066ee69e860e9a21c6a0fec675839341b3d2
parent2b0937946b19f0f4d91e6248a2806b1f98f5244b
Avoid unused sbitmap in update_ssa

The following avoids copying and using blocks_to_update to
the interesting_blocks sbitmap when doing update_ssa as it is
unused besides the redundant query in the domwalk.

* tree-into-ssa.cc (rewrite_update_dom_walker::before_dom_children):
Do not look at interesting_blocks which is a copy of
blocks_to_update.
(update_ssa): Do not initialize it.
(pass_build_ssa::execute): Set interesting_blocks to NULL
after releasing it.
gcc/tree-into-ssa.cc