]> gcc.gnu.org Git - gcc.git/commitdiff
cgraph.c (cgraph_node::get_availability): Fix typo in comment.
authorBernd Edlinger <bernd.edlinger@hotmail.de>
Wed, 25 May 2016 07:38:32 +0000 (07:38 +0000)
committerBernd Edlinger <edlinger@gcc.gnu.org>
Wed, 25 May 2016 07:38:32 +0000 (07:38 +0000)
* cgraph.c (cgraph_node::get_availability): Fix typo in comment.
* symtab.c (symtab_node::binds_to_current_def_p): Likewise.
* varpool.c (varpool_node::get_availability): Likewise.

From-SVN: r236690

gcc/ChangeLog
gcc/cgraph.c
gcc/symtab.c
gcc/varpool.c

index 8b0a5043c9507e1bcd482b8a993689a5eec8419c..f2a1e5372bdc6f563c8a33cee9cea4df5cacd417 100644 (file)
@@ -1,3 +1,9 @@
+2016-05-25  Bernd Edlinger  <bernd.edlinger@hotmail.de>
+
+       * cgraph.c (cgraph_node::get_availability): Fix typo in comment.
+       * symtab.c (symtab_node::binds_to_current_def_p): Likewise.
+       * varpool.c (varpool_node::get_availability): Likewise.
+
 2016-05-24  Michael Meissner  <meissner@linux.vnet.ibm.com>
 
        * config/rs6000/altivec.md (VNEG iterator): New iterator for
index 1a4f665293d4fcde6ce7f6e05b07895f0f82f8dc..08bf9bf96a2abcd4a369c012d41e9aebb0017346 100644 (file)
@@ -2235,7 +2235,7 @@ cgraph_node::get_availability (symtab_node *ref)
   else if (!externally_visible)
     avail = AVAIL_AVAILABLE;
   /* If this is a reference from symbol itself and there are no aliases, we
-     may be sure that the symbol was not interposed by soemthing else because
+     may be sure that the symbol was not interposed by something else because
      the symbol itself would be unreachable otherwise.
 
      Also comdat groups are always resolved in groups.  */
index 9bf33273fe131d1d321c3618ee5cbe211dae55c9..ded6ecc17d53f1b69a7fae6cc702e430bfe3717c 100644 (file)
@@ -2239,7 +2239,7 @@ symtab_node::binds_to_current_def_p (symtab_node *ref)
     }
 
   /* If this is a reference from symbol itself and there are no aliases, we
-     may be sure that the symbol was not interposed by soemthing else because
+     may be sure that the symbol was not interposed by something else because
      the symbol itself would be unreachable otherwise.  This is important
      to optimize recursive functions well.
 
index 12696a4faaaf89efe54cbe0b18cda61cb30702a7..ab615fa33fc5f678f5d4e2218671d57cb6a3dad4 100644 (file)
@@ -499,7 +499,7 @@ varpool_node::get_availability (symtab_node *ref)
       return avail;
     }
   /* If this is a reference from symbol itself and there are no aliases, we
-     may be sure that the symbol was not interposed by soemthing else because
+     may be sure that the symbol was not interposed by something else because
      the symbol itself would be unreachable otherwise.  */
   if ((this == ref && !has_aliases_p ())
       || (ref && get_comdat_group ()
This page took 0.090156 seconds and 5 git commands to generate.