Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-4]: src/gnu/usr.bin/ld/ld Pull up revision 1.72 (via patch, req...
details: https://anonhg.NetBSD.org/src/rev/4c0cb8871af0
branches: netbsd-1-4
changeset: 471215:4c0cb8871af0
user: he <he%NetBSD.org@localhost>
date: Sat Nov 04 22:15:22 2000 +0000
description:
Pull up revision 1.72 (via patch, requested by matt):
Fix JMPTAB handling on VAX.
diffstat:
gnu/usr.bin/ld/ld/ld.c | 16 +++++++++++++---
1 files changed, 13 insertions(+), 3 deletions(-)
diffs (44 lines):
diff -r ab44c22ef8cf -r 4c0cb8871af0 gnu/usr.bin/ld/ld/ld.c
--- a/gnu/usr.bin/ld/ld/ld.c Sat Nov 04 20:09:46 2000 +0000
+++ b/gnu/usr.bin/ld/ld/ld.c Sat Nov 04 22:15:22 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ld.c,v 1.64.2.1 2000/01/15 17:15:37 he Exp $ */
+/* $NetBSD: ld.c,v 1.64.2.2 2000/11/04 22:15:22 he Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -88,7 +88,7 @@
#ifndef lint
/* from: "@(#)ld.c 6.10 (Berkeley) 5/22/91"; */
-__RCSID("$NetBSD: ld.c,v 1.64.2.1 2000/01/15 17:15:37 he Exp $");
+__RCSID("$NetBSD: ld.c,v 1.64.2.2 2000/11/04 22:15:22 he Exp $");
#endif /* not lint */
#define GNU_BINUTIL_COMPAT /* forwards compatiblity with binutils 2.x */
@@ -3160,6 +3160,12 @@
} else if (!RELOC_EXTERN_P(r)) {
#if JMPSLOT_NONEXTERN_ARE_INTERMODULE
relocation = addend + sp->value;
+#ifdef DEBUG
+ printf("perform_relocation: jmpslot: %#x=%#lx (addend=%#lx %s=%#lx)\n",
+ pc_relocation + addr,
+ relocation - pc_relocation,
+ addend, sp->name, sp->value);
+#endif
#else
relocation = addend +
data_relocation - text_relocation;
@@ -3470,7 +3476,11 @@
symindex = RELOC_SYMBOL(r);
lsp = &entry->symbols[symindex];
- if (!RELOC_EXTERN_P(r)) {
+ if (!RELOC_EXTERN_P(r)
+#ifdef __vax__
+ && !RELOC_JMPTAB_P(r)
+#endif
+ ) {
if (!pic_code_seen)
continue;
if (RELOC_BASEREL_P(r))
Home |
Main Index |
Thread Index |
Old Index