Reword a comment in varpool_node::ctor_useable_for_folding_p.
authorGerald Pfeifer <gerald@pfeifer.com>
Sat, 18 Jan 2020 12:49:05 +0000 (13:49 +0100)
committerGerald Pfeifer <gerald@pfeifer.com>
Sat, 18 Jan 2020 12:49:05 +0000 (13:49 +0100)
* varpool.c (ctor_useable_for_folding_p): Fix grammar.

gcc/ChangeLog
gcc/varpool.c

index 064bb38a674491347e6c818a5d6e6e1e486e4ab8..6f05cdbbba4939ed235cb765965865af7bcf9604 100644 (file)
@@ -1,3 +1,7 @@
+2019-01-18  Gerald Pfeifer  <gerald@pfeifer.com>
+
+       * varpool.c (ctor_useable_for_folding_p): Fix grammar.
+
 2020-01-18  Iain Sandoe  <iain@sandoe.co.uk>
 
        * Makefile.in: Add coroutine-passes.o.
index e5d632e0eb5bcf23687a8bcbe06471645d888f02..458cdf1bf376d54ce441f9f79a934d35cc2b3fdd 100644 (file)
@@ -352,9 +352,10 @@ varpool_node::ctor_useable_for_folding_p (void)
       return DECL_INITIAL (real_node->decl) != NULL;
     }
 
-  /* Alias of readonly variable is also readonly, since the variable is stored
-     in readonly memory.  We also accept readonly aliases of non-readonly
-     locations assuming that user knows what he is asking for.  */
+  /* An alias of a read-only variable is also read-only, since the variable
+     is stored in read-only memory.  We also accept read-only aliases of
+     non-read-only locations assuming that the user knows what he is asking
+     for.  */
   if (!TREE_READONLY (decl) && !TREE_READONLY (real_node->decl))
     return false;