diff options
author | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-09-05 01:31:53 +0000 |
---|---|---|
committer | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-09-05 01:31:53 +0000 |
commit | 7998838c7ec757088829743bf3439bcf39cff7a4 (patch) | |
tree | 2e61ac54f5d7553f3d8544a515d4e0e95d9ab27e /gcc/varasm.c | |
parent | f892a69ccbf4740da78924a1132481cb8dfc9aab (diff) | |
download | gcc-7998838c7ec757088829743bf3439bcf39cff7a4.tar.gz |
* varasm.c (initializer_constant_valid_p): Fix comment typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@128117 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 29e6649db0a..9dece23fefe 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) |