* readelf.c (elf/i860.h): Include.
(dump_relocations): Add recognition of i860 architecture.
(guess_is_rela): Add recognition of i860 architecture.
+2000-08-05 Jason Eckhardt <jle@cygnus.com>
+
+ * readelf.c (elf/i860.h): Include.
+ (dump_relocations): Add recognition of i860 architecture.
+ (guess_is_rela): Add recognition of i860 architecture.
+
2000-08-03 Nick Clifton <nickc@cygnus.com>
* MAINTAINERS: Add information about CGEN maintainers.
#include "elf/avr.h"
#include "elf/ia64.h"
#include "elf/cris.h"
+#include "elf/i860.h"
#include "bucomm.h"
#include "getopt.h"
case EM_IA_64:
case EM_AVR:
case EM_CRIS:
+ case EM_860:
return TRUE;
case EM_MMA:
case EM_CRIS:
rtype = elf_cris_reloc_type (type);
break;
+
+ case EM_860:
+ rtype = elf_i860_reloc_type (type);
+ break;
}
if (rtype == NULL)