From 5a715667bbb9b9e8a831c6ff2094ed8d2765d7db Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Sat, 18 Jan 2020 13:49:05 +0100 Subject: Reword a comment in varpool_node::ctor_useable_for_folding_p. * varpool.c (ctor_useable_for_folding_p): Fix grammar. --- gcc/varpool.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'gcc/varpool.c') diff --git a/gcc/varpool.c b/gcc/varpool.c index e5d632e..458cdf1 100644 --- a/gcc/varpool.c +++ b/gcc/varpool.c @@ -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; -- cgit v1.1