Deleted Added
full compact
3c3
< 2003 Free Software Foundation, Inc.
---
> 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
26c26
< Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
---
> Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
4090a4091,4096
> case E_MIPS_MACH_9000:
> return bfd_mach_mips9000;
>
> case E_MIPS_MACH_OCTEON:
> return bfd_mach_mips_octeon;
>
7144a7151,7154
> case bfd_mach_mips9000:
> val = E_MIPS_ARCH_4 | E_MIPS_MACH_9000;
> break;
>
7156a7167,7170
> case bfd_mach_mips_octeon:
> val = E_MIPS_ARCH_64R2 | E_MIPS_MACH_OCTEON;
> break;
>
8858a8873,8875
> /* MIPS64r2 extensions. */
> { bfd_mach_mips_octeon, bfd_mach_mipsisa64r2 },
>
8881a8899
> { bfd_mach_mips9000, bfd_mach_mips8000 },
8916c8934,8945
< for (i = 0; extension != base && i < ARRAY_SIZE (mips_mach_extensions); i++)
---
> if (extension == base)
> return TRUE;
>
> if (base == bfd_mach_mipsisa32
> && mips_mach_extends_p (bfd_mach_mipsisa64, extension))
> return TRUE;
>
> if (base == bfd_mach_mipsisa32r2
> && mips_mach_extends_p (bfd_mach_mipsisa64r2, extension))
> return TRUE;
>
> for (i = 0; i < ARRAY_SIZE (mips_mach_extensions); i++)
8918c8947,8951
< extension = mips_mach_extensions[i].base;
---
> {
> extension = mips_mach_extensions[i].base;
> if (extension == base)
> return TRUE;
> }
8920c8953
< return extension == base;
---
> return FALSE;