This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: varasm.c comment typo (committed)


This has been hanging around in my tree for ages.
Committed as obvious.

2007-09-05  Ben Elliston  <bje@au.ibm.com>

        * varasm.c (initializer_constant_valid_p): Fix comment typo.

Index: varasm.c
===================================================================
--- varasm.c    (revision 128115)
+++ varasm.c    (working copy)
@@ -4190,7 +4190,7 @@ initializer_constant_valid_p (tree value
                                                      endtype);
          tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
                                                      endtype);
-         /* If either term is absolute, use the other terms relocation.  */
+         /* If either term is absolute, use the other term's relocation.  */
          if (valid0 == null_pointer_node)
            return valid1;
          if (valid1 == null_pointer_node)



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]