diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2001-09-18 21:23:42 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2001-09-18 21:23:42 +0000 |
commit | be4163cd70065bf6d2d8492cced0410c16decbdb (patch) | |
tree | 0723cb5518e0e8ca1bfa83a076be14d12714718a /distrib/crunch/crunchide | |
parent | 997a5e8dafd7f29196d23e02fa6d4ef4a10da2bf (diff) |
make this better for sparc64
Diffstat (limited to 'distrib/crunch/crunchide')
-rw-r--r-- | distrib/crunch/crunchide/crunchide.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/crunch/crunchide/crunchide.c b/distrib/crunch/crunchide/crunchide.c index ab2556908db..7698560f155 100644 --- a/distrib/crunch/crunchide/crunchide.c +++ b/distrib/crunch/crunchide/crunchide.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crunchide.c,v 1.13 2001/05/11 14:08:19 art Exp $ */ +/* $OpenBSD: crunchide.c,v 1.14 2001/09/18 21:23:41 jason Exp $ */ /* * Copyright (c) 1994 University of Maryland @@ -213,7 +213,7 @@ struct nlist *symbase; #define IS_GLOBAL_DEFINED(sp) \ (((sp)->n_type & N_EXT) && ((sp)->n_type & N_TYPE) != N_UNDF) -#ifdef __sparc__ +#if defined(__sparc__) && !defined(__sparc64__) /* is the relocation entry dependent on a symbol? */ #define IS_SYMBOL_RELOC(rp) \ ((rp)->r_extern || \ |