Commit 26e7516a by Ilya Leoshkevich Committed by Ilya Leoshkevich

find_partition_fixes: remove unused bbs_in_cold_partition variable

gcc/ChangeLog:

2019-10-16  Ilya Leoshkevich  <iii@linux.ibm.com>

	* cfgrtl.c (find_partition_fixes): Remove bbs_in_cold_partition.

From-SVN: r277070
parent 7d3b27ff
2019-10-16 Ilya Leoshkevich <iii@linux.ibm.com>
* cfgrtl.c (find_partition_fixes): Remove bbs_in_cold_partition.
2019-10-16 Wilco Dijkstra <wdijkstr@arm.com> 2019-10-16 Wilco Dijkstra <wdijkstr@arm.com>
* config/aarch64/aarch64.c (aarch64_classify_symbol): * config/aarch64/aarch64.c (aarch64_classify_symbol):
......
...@@ -2375,7 +2375,6 @@ static vec<basic_block> ...@@ -2375,7 +2375,6 @@ static vec<basic_block>
find_partition_fixes (bool flag_only) find_partition_fixes (bool flag_only)
{ {
basic_block bb; basic_block bb;
vec<basic_block> bbs_in_cold_partition = vNULL;
vec<basic_block> bbs_to_fix = vNULL; vec<basic_block> bbs_to_fix = vNULL;
hash_set<basic_block> set; hash_set<basic_block> set;
...@@ -2394,7 +2393,6 @@ find_partition_fixes (bool flag_only) ...@@ -2394,7 +2393,6 @@ find_partition_fixes (bool flag_only)
else else
BB_SET_PARTITION (bb, BB_COLD_PARTITION); BB_SET_PARTITION (bb, BB_COLD_PARTITION);
bbs_to_fix.safe_push (bb); bbs_to_fix.safe_push (bb);
bbs_in_cold_partition.safe_push (bb);
} }
return bbs_to_fix; return bbs_to_fix;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment