diff options
author | Alan Modra <amodra@gmail.com> | 2002-09-02 06:00:05 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-09-02 06:00:05 +0000 |
commit | d943fe33c64a06a950c92ba6db28e65977b87767 (patch) | |
tree | cd10c2aa3a4d83e29d7612e4858ddc74a2283e42 /opcodes/arc-opc.c | |
parent | 3b77b1d509b421e8485bb7da8f19f953675f73d4 (diff) | |
download | fsf-binutils-gdb-d943fe33c64a06a950c92ba6db28e65977b87767.zip fsf-binutils-gdb-d943fe33c64a06a950c92ba6db28e65977b87767.tar.gz fsf-binutils-gdb-d943fe33c64a06a950c92ba6db28e65977b87767.tar.bz2 |
* arc-opc.c: Include bfd.h.
(arc_get_opcode_mach): Subtract off base bfd_mach value.
Diffstat (limited to 'opcodes/arc-opc.c')
-rw-r--r-- | opcodes/arc-opc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/opcodes/arc-opc.c b/opcodes/arc-opc.c index b7afb86..c2d9e1b 100644 --- a/opcodes/arc-opc.c +++ b/opcodes/arc-opc.c @@ -20,6 +20,7 @@ #include "sysdep.h" #include <stdio.h> #include "ansidecl.h" +#include "bfd.h" #include "opcode/arc.h" #define INSERT_FN(fn) \ @@ -513,7 +514,7 @@ arc_get_opcode_mach (bfd_mach, big_p) ARC_MACH_7, ARC_MACH_8 }; - return mach_type_map[bfd_mach] | (big_p ? ARC_MACH_BIG : 0); + return mach_type_map[bfd_mach - bfd_mach_arc_5] | (big_p ? ARC_MACH_BIG : 0); } /* Initialize any tables that need it. |