Commit 584bafb6 by Jan Hubicka Committed by Jan Hubicka

bb-reorder.c (connect_traces): Allow copying of blocks within single partition.

	* bb-reorder.c (connect_traces): Allow copying of blocks within
	single partition.

From-SVN: r250390
parent 0574d9ae
2017-07-18 Jan Hubicka <hubicka@ucw.cz>
* bb-reorder.c (connect_traces): Allow copying of blocks within
single partition.
2017-07-20 Richard Biener <rguenther@suse.de>
* gimple.h (gimple_phi_result): Add gphi * overload.
......
......@@ -1302,16 +1302,15 @@ connect_traces (int n_traces, struct trace *traces)
}
}
if (crtl->has_bb_partition)
try_copy = false;
/* Copy tiny blocks always; copy larger blocks only when the
edge is traversed frequently enough. */
if (try_copy
&& BB_PARTITION (best->src) == BB_PARTITION (best->dest)
&& copy_bb_p (best->dest,
optimize_edge_for_speed_p (best)
&& EDGE_FREQUENCY (best) >= freq_threshold
&& best->count >= count_threshold))
&& (!best->count.initialized_p ()
|| best->count >= count_threshold)))
{
basic_block new_bb;
......
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