aboutsummaryrefslogtreecommitdiff
path: root/gcc/varasm.c
diff options
context:
space:
mode:
authorBen Elliston <bje@au.ibm.com>2007-09-05 01:31:53 +0000
committerBen Elliston <bje@gcc.gnu.org>2007-09-05 11:31:53 +1000
commitff539210fad1f87e5bd134b2b9a3b6b0dce93b5c (patch)
tree2e61ac54f5d7553f3d8544a515d4e0e95d9ab27e /gcc/varasm.c
parentff90b22062c5a6f313aac95196323f14f1c2afbc (diff)
downloadgcc-ff539210fad1f87e5bd134b2b9a3b6b0dce93b5c.zip
gcc-ff539210fad1f87e5bd134b2b9a3b6b0dce93b5c.tar.gz
gcc-ff539210fad1f87e5bd134b2b9a3b6b0dce93b5c.tar.bz2
* varasm.c (initializer_constant_valid_p): Fix comment typo.
From-SVN: r128117
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r--gcc/varasm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c
index 29e6649..9dece23 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)