tree-ssa-coalesce.c (gimple_can_coalesce_p): Fix reference in head comment.
authorEric Botcazou <ebotcazou@adacore.com>
Wed, 4 May 2016 20:22:42 +0000 (20:22 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Wed, 4 May 2016 20:22:42 +0000 (20:22 +0000)
* tree-ssa-coalesce.c (gimple_can_coalesce_p): Fix reference in head
comment.
(compute_samebase_partition_bases): Fix typo.

From-SVN: r235900

gcc/ChangeLog
gcc/tree-ssa-coalesce.c

index 6ca01e7bae5209429bcaa29e9d1e560081546013..898de7ee914f57e6e1ebf9273787bd9a6d40d0ce 100644 (file)
@@ -1,3 +1,9 @@
+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>
 
        * config/i386/sse.md (vec_interleave_highv8sf,
index 4b0134d082cccddb77ecec605076893ca5640ff7..5f8f64514d53c3ecd99fcfac678f8bd1fd744fa3 100644 (file)
@@ -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
    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
 gimple_can_coalesce_p (tree name1, tree name2)
@@ -1759,7 +1760,7 @@ compute_samebase_partition_bases (var_map map)
       else
        /* This restricts what anonymous SSA names we can coalesce
           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
           underlying decl.