2000-11-09 Kazu Hirata <kazu@hxi.com>
* itbl-ops.c: Fix comment typos.
This commit is contained in:
parent
a9e2e984e2
commit
ef5c4bfce0
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2000-11-09 Kazu Hirata <kazu@hxi.com>
|
||||||
|
|
||||||
|
* itbl-ops.c: Fix comment typos.
|
||||||
|
|
||||||
2000-11-08 Jim Wilson <wilson@redhat.com>
|
2000-11-08 Jim Wilson <wilson@redhat.com>
|
||||||
|
|
||||||
* config/tc-ia64.c (struct unw_rec_list): Add slot_frag field.
|
* config/tc-ia64.c (struct unw_rec_list): Add slot_frag field.
|
||||||
|
|
|
@ -516,7 +516,7 @@ itbl_assemble (char *name, char *s)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (!e)
|
if (!e)
|
||||||
return 0; /* opcode not in table; invalid instrustion */
|
return 0; /* opcode not in table; invalid instruction */
|
||||||
opcode = build_opcode (e);
|
opcode = build_opcode (e);
|
||||||
|
|
||||||
/* parse opcode's args (if any) */
|
/* parse opcode's args (if any) */
|
||||||
|
@ -606,7 +606,7 @@ itbl_disassemble (char *s, unsigned long insn)
|
||||||
/* find entry in list */
|
/* find entry in list */
|
||||||
e = find_entry_byval (processor, e_insn, insn, 0);
|
e = find_entry_byval (processor, e_insn, insn, 0);
|
||||||
if (!e)
|
if (!e)
|
||||||
return 0; /* opcode not in table; invalid instrustion */
|
return 0; /* opcode not in table; invalid instruction */
|
||||||
strcpy (s, e->name);
|
strcpy (s, e->name);
|
||||||
|
|
||||||
/* Parse insn's args (if any). */
|
/* Parse insn's args (if any). */
|
||||||
|
|
Loading…
Reference in a new issue