From d943fe33c64a06a950c92ba6db28e65977b87767 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Mon, 2 Sep 2002 06:00:05 +0000 Subject: [PATCH] * arc-opc.c: Include bfd.h. (arc_get_opcode_mach): Subtract off base bfd_mach value. --- opcodes/ChangeLog | 5 +++++ opcodes/arc-opc.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 5e0cfe9508..62d2745d94 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2002-09-02 Alan Modra + + * arc-opc.c: Include bfd.h. + (arc_get_opcode_mach): Subtract off base bfd_mach value. + 2002-08-30 Alan Modra * v850-dis.c (disassemble): Remove bfd_mach_v850ea case. diff --git a/opcodes/arc-opc.c b/opcodes/arc-opc.c index b7afb86ac9..c2d9e1b747 100644 --- a/opcodes/arc-opc.c +++ b/opcodes/arc-opc.c @@ -20,6 +20,7 @@ #include "sysdep.h" #include #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.