diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2016-02-26 02:23:08 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2016-02-26 02:23:08 +0000 |
commit | 741206551a41348920bc60fa45a15b6c31f6437f (patch) | |
tree | 001c6515878be4cca9d174e0d967b6bd29087bed /sys/arch/i386 | |
parent | a5c293a0e3691c514ab013804610bb78b46bbc94 (diff) |
SYMTAB_SPACE is no longer used (last used with a.out ddb)
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/locore.s | 4 |
1 files changed, 2 insertions, 2 deletions
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 |