* 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>
This commit is contained in:
Ulrich Drepper 1999-10-07 18:22:40 +00:00
parent cab30d75a3
commit 3b0fcc2041
3 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,9 @@
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.

View 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 */

View file

@ -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;