From: nasm-bot f. H. P. A. <hp...@li...> - 2016-02-18 06:09:19
|
Commit-ID: f9be8c317909ad5c47d3271c230fe6b967dc0bf0 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=f9be8c317909ad5c47d3271c230fe6b967dc0bf0 Author: H. Peter Anvin <hp...@li...> AuthorDate: Wed, 17 Feb 2016 22:01:33 -0800 Committer: H. Peter Anvin <hp...@li...> CommitDate: Wed, 17 Feb 2016 22:01:33 -0800 outelf64: fix comment Fix comment that refer to R_386_* to avoid hiding similarities versus outelfx32. Signed-off-by: H. Peter Anvin <hp...@li...> --- output/outelf64.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/output/outelf64.c b/output/outelf64.c index b5bec7b..dbd0bf0 100644 --- a/output/outelf64.c +++ b/output/outelf64.c @@ -594,8 +594,8 @@ static void elf_add_reloc(struct elf_section *sect, int32_t segment, * _containing_ the symbol. Such relocations call to this routine, * which searches the symbol list for the symbol in question. * - * R_386_GOT32 references require the _exact_ symbol address to be - * used; R_386_32 references can be at an offset from the symbol. + * R_X86_64_GOT32 references require the _exact_ symbol address to be + * used; R_X86_64_32 references can be at an offset from the symbol. * The boolean argument `exact' tells us this. * * Return value is the adjusted value of `addr', having become an |