diff options
author | 2016-02-26 02:23:07 +0000 | |
---|---|---|
committer | 2016-02-26 02:23:07 +0000 | |
commit | cdc3522ac5987610ef435530d25c98338393864f (patch) | |
tree | c14d5d6236bcf6948f3457323249af328a0a2022 | |
parent | Make alpha and sh 2038-safe. Now that we have 64-bit time_t, we don't (diff) | |
download | wireguard-openbsd-cdc3522ac5987610ef435530d25c98338393864f.tar.xz wireguard-openbsd-cdc3522ac5987610ef435530d25c98338393864f.zip |
SYMTAB_SPACE is no longer used (last used with a.out ddb)
-rw-r--r-- | sys/arch/amd64/amd64/locore.S | 4 | ||||
-rw-r--r-- | sys/arch/i386/i386/locore.s | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/amd64/amd64/locore.S b/sys/arch/amd64/amd64/locore.S index 79fe50e1d43..a384ec9d4e0 100644 --- a/sys/arch/amd64/amd64/locore.S +++ b/sys/arch/amd64/amd64/locore.S @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.S,v 1.75 2016/01/04 01:03:03 mlarkin Exp $ */ +/* $OpenBSD: locore.S,v 1.76 2016/02/26 02:23:07 mlarkin Exp $ */ /* $NetBSD: locore.S,v 1.13 2004/03/25 18:33:17 drochner Exp $ */ /* @@ -420,7 +420,7 @@ cont: /* Find end of kernel image. */ movl $RELOC(end),%edi -#if (NKSYMS || defined(DDB)) && !defined(SYMTAB_SPACE) +#if (NKSYMS || defined(DDB)) /* Save the symbols (if loaded). */ movl RELOC(esym),%eax testl %eax,%eax diff --git a/sys/arch/i386/i386/locore.s b/sys/arch/i386/i386/locore.s index 979e929a2a3..775eaae6564 100644 --- a/sys/arch/i386/i386/locore.s +++ b/sys/arch/i386/i386/locore.s @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.s,v 1.161 2015/08/25 04:57:31 mlarkin Exp $ */ +/* $OpenBSD: locore.s,v 1.162 2016/02/26 02:23:07 mlarkin Exp $ */ /* $NetBSD: locore.s,v 1.145 1996/05/03 19:41:19 christos Exp $ */ /*- @@ -507,7 +507,7 @@ try586: /* Use the `cpuid' instruction. */ /* Find end of kernel image. */ movl $RELOC(_C_LABEL(end)),%edi -#if (defined(DDB) || NKSYMS > 0) && !defined(SYMTAB_SPACE) +#if (NKSYMS || defined(DDB)) /* Save the symbols (if loaded). */ movl RELOC(_C_LABEL(esym)),%eax testl %eax,%eax |