From 4a4953f54c4b8c0c1cacc8379379977a4c492bd4 Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Mon, 24 Jun 1996 22:45:02 +0000 Subject: [PATCH] Add debug msg --- bfd/elflink.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/bfd/elflink.h b/bfd/elflink.h index 8a9e579802..a091503e83 100644 --- a/bfd/elflink.h +++ b/bfd/elflink.h @@ -3367,7 +3367,15 @@ elf_create_pointer_linker_section (abfd, info, lsect, h, rel) lsect->hole_offset += ARCH_SIZE / 8; lsect->sym_offset += ARCH_SIZE / 8; if (lsect->sym_hash) /* Bump up symbol value if needed */ - lsect->sym_hash->root.u.def.value += ARCH_SIZE / 8; + { + lsect->sym_hash->root.u.def.value += ARCH_SIZE / 8; +#ifdef DEBUG + fprintf (stderr, "Bump up %s by %ld, current value = %ld\n", + lsect->sym_hash->root.root.string, + (long)ARCH_SIZE / 8, + (long)lsect->sym_hash->root.u.def.value); +#endif + } } else linker_section_ptr->offset = lsect->section->_raw_size; -- 2.34.1