aboutsummaryrefslogtreecommitdiff
path: root/opcodes/dlx-dis.c
diff options
context:
space:
mode:
authorPierre Muller <muller@sourceware.org>2010-09-10 13:00:54 +0000
committerPierre Muller <muller@sourceware.org>2010-09-10 13:00:54 +0000
commit8901a3cd7d56bb4e90007759a66951fffe7ce38f (patch)
tree0de1beeaf41f4587bbdc101290863ee1564d90f1 /opcodes/dlx-dis.c
parentb7dd81f7c52b52ab6a05c4858afa5da5fcc5c260 (diff)
downloadgdb-8901a3cd7d56bb4e90007759a66951fffe7ce38f.zip
gdb-8901a3cd7d56bb4e90007759a66951fffe7ce38f.tar.gz
gdb-8901a3cd7d56bb4e90007759a66951fffe7ce38f.tar.bz2
* src/opcodes/dlx-dis.c (print_insn_dlx): Use dlx_insn type for
dlx_insn_type array.
Diffstat (limited to 'opcodes/dlx-dis.c')
-rw-r--r--opcodes/dlx-dis.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/opcodes/dlx-dis.c b/opcodes/dlx-dis.c
index f055c4d..aca9db4 100644
--- a/opcodes/dlx-dis.c
+++ b/opcodes/dlx-dis.c
@@ -437,18 +437,18 @@ print_insn_dlx (bfd_vma memaddr, struct disassemble_info* info)
bfd_byte buffer[4];
int insn_idx;
unsigned long insn_word;
- unsigned long dlx_insn_type[] =
+ dlx_insn dlx_insn_type[] =
{
- (unsigned long) dlx_r_type,
- (unsigned long) dlx_load_type,
- (unsigned long) dlx_store_type,
- (unsigned long) dlx_aluI_type,
- (unsigned long) dlx_br_type,
- (unsigned long) dlx_jmp_type,
- (unsigned long) dlx_jr_type,
- (unsigned long) NULL
+ dlx_r_type,
+ dlx_load_type,
+ dlx_store_type,
+ dlx_aluI_type,
+ dlx_br_type,
+ dlx_jmp_type,
+ dlx_jr_type,
+ (dlx_insn) NULL
};
- int dlx_insn_type_num = ((sizeof dlx_insn_type) / (sizeof (unsigned long))) - 1;
+ int dlx_insn_type_num = ((sizeof dlx_insn_type) / (sizeof (dlx_insn))) - 1;
int status =
(*info->read_memory_func) (memaddr, (bfd_byte *) &buffer[0], 4, info);
@@ -483,7 +483,7 @@ print_insn_dlx (bfd_vma memaddr, struct disassemble_info* info)
current_insn_addr = (unsigned long) memaddr;
for (insn_idx = 0; dlx_insn_type[insn_idx] != 0x0; insn_idx++)
- switch (((dlx_insn) (dlx_insn_type[insn_idx])) (info))
+ switch ((dlx_insn_type[insn_idx]) (info))
{
/* Found the correct opcode */
case R_TYPE: