]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* varasm.c (initializer_constant_valid_p): Fix comment typo.
authorBen Elliston <bje@au.ibm.com>
Wed, 5 Sep 2007 01:31:53 +0000 (01:31 +0000)
committerBen Elliston <bje@gcc.gnu.org>
Wed, 5 Sep 2007 01:31:53 +0000 (11:31 +1000)
From-SVN: r128117

gcc/ChangeLog
gcc/varasm.c

index acede3bfc33fbc028e643f5ff0f65a1ed969ee75..f88fec1b49ccdc9b3c0b20d9fb8ad9dfcaa76b93 100644 (file)
@@ -1,3 +1,7 @@
+2007-09-05  Ben Elliston  <bje@au.ibm.com>
+
+       * varasm.c (initializer_constant_valid_p): Fix comment typo.
+
 2007-09-05  Ben Elliston  <bje@au.ibm.com>
 
        * config/rs6000/ppu_intrinsics.h (__ldarx): Use `Z' constraint,
index 29e6649db0af3c0d76d487c635e00b07c19381b4..9dece23fefeb6ab3aea422ab1d6897d50ba6eef3 100644 (file)
@@ -4190,7 +4190,7 @@ initializer_constant_valid_p (tree value, tree endtype)
                                                      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)