Add MIPS V and MIPS 64 machine numbers
[deliverable/binutils-gdb.git] / binutils / readelf.c
index a9c5cbf8a253c525f711f9de3e806112e3c0e03b..03dce77f983691dad0ba39f86cc7204b34e8f919 100644 (file)
@@ -1471,9 +1471,15 @@ get_machine_flags (e_flags, e_machine)
          if ((e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_4)
            strcat (buf, ", mips4");
 
+         if ((e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_5)
+           strcat (buf, ", mips5");
+
          if ((e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32)
            strcat (buf, ", mips32");
 
+         if ((e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_64)
+           strcat (buf, ", mips64");
+
          switch ((e_flags & EF_MIPS_MACH))
            {
            case E_MIPS_MACH_3900: strcat (buf, ", 3900"); break;
This page took 0.026348 seconds and 4 git commands to generate.