diff options
author | Cupertino Miranda <Cupertino.Miranda@synopsys.com> | 2016-02-05 09:58:01 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2016-02-05 09:58:01 +0000 |
commit | bdbca4e6f805c73796c14c79102a8f1ea541d633 (patch) | |
tree | b9861beb4bc752db414d5f6a84fd3e6fe6f0a6d4 /bfd/cpu-arc.c | |
parent | b605bbc620dd0191b3c2b9cf0a495739f9845f27 (diff) | |
download | binutils-bdbca4e6f805c73796c14c79102a8f1ea541d633.zip binutils-bdbca4e6f805c73796c14c79102a8f1ea541d633.tar.gz binutils-bdbca4e6f805c73796c14c79102a8f1ea541d633.tar.bz2 |
Change the default architecture value for ARC bfds so that they have the lowest possible value, and hence can be merged with other ARC binaries wihtout changing their architecture value.
bfd * cpu-arc.c: Change default archure from bfd_mach_arc_arcv2
to bfd_mach_arc_arc600.
binutils * testsuite/binutils-all/objdump.exp: Update expected default
architecture value for ARC binaries.
Diffstat (limited to 'bfd/cpu-arc.c')
-rw-r--r-- | bfd/cpu-arc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/cpu-arc.c b/bfd/cpu-arc.c index decbe69..07a052b 100644 --- a/bfd/cpu-arc.c +++ b/bfd/cpu-arc.c @@ -53,7 +53,7 @@ static const bfd_arch_info_type arch_info_struct[] = }; const bfd_arch_info_type bfd_arc_arch = - ARC (bfd_mach_arc_arcv2, "HS", TRUE, &arch_info_struct[0]); + ARC (bfd_mach_arc_arc600, "ARC600", TRUE, &arch_info_struct[0]); /* Utility routines. */ |