diff options
author | Jason Merrill <jason@redhat.com> | 2021-12-10 05:45:01 -0500 |
---|---|---|
committer | Jason Merrill <jason@redhat.com> | 2021-12-10 14:45:23 -0500 |
commit | 1e2eee7b29ed2afbc7edea6f3da7e6c8f70b1a4e (patch) | |
tree | 4cbaade9934ca94c5cdd20eba49a51d31d1ab6a6 /gcc/symtab.c | |
parent | 0df964ba2875063bb14ddd9d55fec5b1e862c90b (diff) | |
download | gcc-1e2eee7b29ed2afbc7edea6f3da7e6c8f70b1a4e.zip gcc-1e2eee7b29ed2afbc7edea6f3da7e6c8f70b1a4e.tar.gz gcc-1e2eee7b29ed2afbc7edea6f3da7e6c8f70b1a4e.tar.bz2 |
symtab: fix comment typo
gcc/ChangeLog:
* symtab.c (symtab_node::equal_address_to): Fix comment typo.
Diffstat (limited to 'gcc/symtab.c')
-rw-r--r-- | gcc/symtab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/symtab.c b/gcc/symtab.c index 94b4e47..05e8239 100644 --- a/gcc/symtab.c +++ b/gcc/symtab.c @@ -2257,7 +2257,7 @@ symtab_node::equal_address_to (symtab_node *s2, bool memory_accessed) if (rs1->alias || rs2->alias) return -1; - /* If we have a non-interposale definition of at least one of the symbols + /* If we have a non-interposable definition of at least one of the symbols and the other symbol is different, we know other unit cannot interpose it to the first symbol; all aliases of the definition needs to be present in the current unit. */ |