* a29k-tdep.c (gdb_print_insn_a29k): Fix typo (&info -> info).

This commit is contained in:
Jim Kingdon 1995-01-17 16:43:20 +00:00
parent 29f25f6f69
commit 5ad32be23c
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
Tue Jan 17 09:48:38 1995 Jim Kingdon <kingdon@lioth.cygnus.com> Tue Jan 17 09:48:38 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
* a29k-tdep.c (gdb_print_insn_a29k): Fix typo (&info -> info).
* parse.c (write_exp_msymbol): Use new variables * parse.c (write_exp_msymbol): Use new variables
msym_*_symbol_type as type of msymbol expression. msym_*_symbol_type as type of msymbol expression.
(_initialize_parse): Initialize them. (_initialize_parse): Initialize them.

View File

@ -917,9 +917,9 @@ gdb_print_insn_a29k (memaddr, info)
disassemble_info *info; disassemble_info *info;
{ {
if (TARGET_BYTE_ORDER == BIG_ENDIAN) if (TARGET_BYTE_ORDER == BIG_ENDIAN)
return print_insn_big_a29k (memaddr, &info); return print_insn_big_a29k (memaddr, info);
else else
return print_insn_little_a29k (memaddr, &info); return print_insn_little_a29k (memaddr, info);
} }
enum a29k_processor_types processor_type = a29k_unknown; enum a29k_processor_types processor_type = a29k_unknown;