Commit e4ea422a by Eric Botcazou Committed by Eric Botcazou

tree-ssa-coalesce.c (gimple_can_coalesce_p): Fix reference in head comment.

	* tree-ssa-coalesce.c (gimple_can_coalesce_p): Fix reference in head
	comment.
	(compute_samebase_partition_bases): Fix typo.

From-SVN: r235900
parent 627add08
2016-05-04 Eric Botcazou <ebotcazou@adacore.com>
* tree-ssa-coalesce.c (gimple_can_coalesce_p): Fix reference in head
comment.
(compute_samebase_partition_bases): Fix typo.
2016-05-04 Jakub Jelinek <jakub@redhat.com> 2016-05-04 Jakub Jelinek <jakub@redhat.com>
* config/i386/sse.md (vec_interleave_highv8sf, * config/i386/sse.md (vec_interleave_highv8sf,
......
...@@ -1505,7 +1505,8 @@ dump_part_var_map (FILE *f, partition part, var_map map) ...@@ -1505,7 +1505,8 @@ dump_part_var_map (FILE *f, partition part, var_map map)
/* Given SSA_NAMEs NAME1 and NAME2, return true if they are candidates for /* Given SSA_NAMEs NAME1 and NAME2, return true if they are candidates for
coalescing together, false otherwise. coalescing together, false otherwise.
This must stay consistent with var_map_base_init in tree-ssa-live.c. */ This must stay consistent with compute_samebase_partition_bases and
compute_optimized_partition_bases. */
bool bool
gimple_can_coalesce_p (tree name1, tree name2) gimple_can_coalesce_p (tree name1, tree name2)
...@@ -1759,7 +1760,7 @@ compute_samebase_partition_bases (var_map map) ...@@ -1759,7 +1760,7 @@ compute_samebase_partition_bases (var_map map)
else else
/* This restricts what anonymous SSA names we can coalesce /* This restricts what anonymous SSA names we can coalesce
as it restricts the sets we compute conflicts for. as it restricts the sets we compute conflicts for.
Using TREE_TYPE to generate sets is the easies as Using TREE_TYPE to generate sets is the easiest as
type equivalency also holds for SSA names with the same type equivalency also holds for SSA names with the same
underlying decl. underlying decl.
......
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