2000-08-05 Jason Eckhardt <jle@cygnus.com>
authorJason Eckhardt <jle@rice.edu>
Tue, 8 Aug 2000 00:47:04 +0000 (00:47 +0000)
committerJason Eckhardt <jle@rice.edu>
Tue, 8 Aug 2000 00:47:04 +0000 (00:47 +0000)
        * readelf.c (elf/i860.h): Include.
        (dump_relocations): Add recognition of i860 architecture.
        (guess_is_rela): Add recognition of i860 architecture.

binutils/ChangeLog
binutils/readelf.c

index ab61a658e5953c23041ce4e1eeace7f58fed2e6b..cd1f4d37ad1a05274dbf1c8e86c2b921b9de8e64 100644 (file)
@@ -1,3 +1,9 @@
+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.
index ecd13beac0dfa034e0ddf52c97bbbe409ab35c52..c211d1e872ba38d9ade0b31573bf4d250c100680 100644 (file)
@@ -72,6 +72,7 @@
 #include "elf/avr.h"
 #include "elf/ia64.h"
 #include "elf/cris.h"
+#include "elf/i860.h"
 
 #include "bucomm.h"
 #include "getopt.h"
@@ -567,6 +568,7 @@ guess_is_rela (e_machine)
     case EM_IA_64:
     case EM_AVR:
     case EM_CRIS:
+    case EM_860:
       return TRUE;
 
     case EM_MMA:
@@ -885,6 +887,10 @@ dump_relocations (file, rel_offset, rel_size, symtab, nsyms, strtab, is_rela)
        case EM_CRIS:
          rtype = elf_cris_reloc_type (type);
          break;
+
+       case EM_860:
+         rtype = elf_i860_reloc_type (type);
+         break;
        }
 
       if (rtype == NULL)
This page took 0.04413 seconds and 4 git commands to generate.