aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2022-05-17 17:38:51 +0200
committerRichard Biener <rguenther@suse.de>2022-05-17 17:38:51 +0200
commit0cc1e771238dbd8ea576aba70568e1c530f5f652 (patch)
tree62dc414c1ba4ce8559724aefa7547c36439fe990
parent88701062f36e51b25b9033598a0cebd2d53d7aed (diff)
downloadgcc-0cc1e771238dbd8ea576aba70568e1c530f5f652.zip
gcc-0cc1e771238dbd8ea576aba70568e1c530f5f652.tar.gz
gcc-0cc1e771238dbd8ea576aba70568e1c530f5f652.tar.bz2
fix ->aux clearing of duplicate_loop_body_to_header_edge
-rw-r--r--gcc/cfgloopmanip.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/cfgloopmanip.cc b/gcc/cfgloopmanip.cc
index b4357c0..7736e3e 100644
--- a/gcc/cfgloopmanip.cc
+++ b/gcc/cfgloopmanip.cc
@@ -1351,7 +1351,6 @@ duplicate_loop_body_to_header_edge (class loop *loop, edge e,
unsigned j;
bb = bbs[i];
- bb->aux = 0;
auto_vec<basic_block> dom_bbs = get_dominated_by (CDI_DOMINATORS, bb);
FOR_EACH_VEC_ELT (dom_bbs, j, dominated)