From: Ben Elliston Date: Wed, 5 Sep 2007 01:31:53 +0000 (+0000) Subject: * varasm.c (initializer_constant_valid_p): Fix comment typo. X-Git-Tag: releases/gcc-4.3.0~2881 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ff539210fad1f87e5bd134b2b9a3b6b0dce93b5c;p=thirdparty%2Fgcc.git * varasm.c (initializer_constant_valid_p): Fix comment typo. From-SVN: r128117 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index acede3bfc33f..f88fec1b49cc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-09-05 Ben Elliston + + * varasm.c (initializer_constant_valid_p): Fix comment typo. + 2007-09-05 Ben Elliston * config/rs6000/ppu_intrinsics.h (__ldarx): Use `Z' constraint, diff --git a/gcc/varasm.c b/gcc/varasm.c index 29e6649db0af..9dece23fefeb 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -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)