diff options
author | Roland McGrath <roland@gnu.org> | 2000-03-10 04:48:34 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2000-03-10 04:48:34 +0000 |
commit | 17eb1568e9dbdb003cd8cb3d7e199fe3a669b59e (patch) | |
tree | 122801ad8a0df32cdeed46aa093b2668d1f6f1f7 /exec | |
parent | 92a2c3d1d32ceaa4f86609f86689d84ab823874b (diff) |
2000-03-09 Roland McGrath <roland@baalperazim.frob.com>
* hostarch.c (elf_machine_matches_host): Don't recognize EM_486,
since newer <elf.h>'s don't define it any more.
Diffstat (limited to 'exec')
-rw-r--r-- | exec/hostarch.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/exec/hostarch.c b/exec/hostarch.c index e62e666f..db59c95f 100644 --- a/exec/hostarch.c +++ b/exec/hostarch.c @@ -1,6 +1,6 @@ /* Determine the BFD and ELF architecture and machine flavor from a Mach host port. Used by the exec and core servers. - Copyright (C) 1992, 1993, 1995, 1996, 1999 Free Software Foundation, Inc. + Copyright (C) 1992,93,95,96,99,2000 Free Software Foundation, Inc. Written by Roland McGrath. This file is part of the GNU Hurd. @@ -67,11 +67,10 @@ elf_machine_matches_host (Elf32_Half e_machine) CACHE (e_machine == EM_SPARC); case CPU_TYPE_I386: - CACHE (e_machine == EM_386); case CPU_TYPE_I486: case CPU_TYPE_PENTIUM: case CPU_TYPE_PENTIUMPRO: - CACHE (e_machine == EM_386 || e_machine == EM_486); + CACHE (e_machine == EM_386); case CPU_TYPE_POWERPC: CACHE (e_machine == EM_PPC); |