From fbf342ab7736fe8774f28ecc90671b700e0c27e5 Mon Sep 17 00:00:00 2001 From: jake Date: Sun, 25 Feb 2001 06:29:04 +0000 Subject: Remove the leading underscore from all symbols defined in x86 asm and used in C or vice versa. The elf compiler uses the same names for both. Remove asnames.h with great prejudice; it has served its purpose. Note that this does not affect the ability to generate an aout kernel due to gcc's -mno-underscores option. moral support from: peter, jhb --- sys/i386/isa/vector.s | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'sys/i386/isa/vector.s') diff --git a/sys/i386/isa/vector.s b/sys/i386/isa/vector.s index 79f2320..68b09b0 100644 --- a/sys/i386/isa/vector.s +++ b/sys/i386/isa/vector.s @@ -45,15 +45,15 @@ */ #define NR_INTRNAMES (1 + ICU_LEN + 2 * ICU_LEN) - .globl _intrcnt, _eintrcnt -_intrcnt: + .globl intrcnt, eintrcnt +intrcnt: .space NR_INTRNAMES * 4 -_eintrcnt: +eintrcnt: - .globl _intrnames, _eintrnames -_intrnames: + .globl intrnames, eintrnames +intrnames: .space NR_INTRNAMES * 16 -_eintrnames: +eintrnames: .text /* -- cgit v1.1