diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | elf/elf.h | 1 | ||||
-rw-r--r-- | sysdeps/i386/dl-machine.h | 1 |
3 files changed, 6 insertions, 2 deletions
@@ -1,5 +1,11 @@ 1999-10-07 Ulrich Drepper <drepper@cygnus.com> + * elf/elf.h: Remove EM_486 entry. + * sysdeps/i386/dl-machine.h (elf_machine_matches_host): Remove + test for EM_486. + +1999-10-07 Ulrich Drepper <drepper@cygnus.com> + * debug/Makefile (install-bin): Add pcprofiledump and xtrace. Add rules for both programs. * debug/pcprofiledump.c: New file. @@ -167,7 +167,6 @@ typedef struct #define EM_386 3 /* Intel 80386 */ #define EM_68K 4 /* Motorola m68k family */ #define EM_88K 5 /* Motorola m88k family */ -#define EM_486 6 /* Intel 80486 */ #define EM_860 7 /* Intel 80860 */ #define EM_MIPS 8 /* MIPS R3000 big-endian */ #define EM_S370 9 /* Amdahl */ diff --git a/sysdeps/i386/dl-machine.h b/sysdeps/i386/dl-machine.h index 2a14d73..3dc178b 100644 --- a/sysdeps/i386/dl-machine.h +++ b/sysdeps/i386/dl-machine.h @@ -31,7 +31,6 @@ elf_machine_matches_host (Elf32_Half e_machine) switch (e_machine) { case EM_386: - case EM_486: return 1; default: return 0; |