diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2010-01-14 15:18:42 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2010-01-14 15:18:42 +0000 |
commit | 1319d143a79b1c578a7c71c89f4d536905f71938 (patch) | |
tree | cf92abce38764bd0a6f1aabd2521192b4e99a276 /include/opcode | |
parent | 78a1456372bb97e1efe6955ae3a562c8773598dc (diff) | |
download | gdb-1319d143a79b1c578a7c71c89f4d536905f71938.zip gdb-1319d143a79b1c578a7c71c89f4d536905f71938.tar.gz gdb-1319d143a79b1c578a7c71c89f4d536905f71938.tar.bz2 |
Remove argument name.
2010-01-14 H.J. Lu <hongjiu.lu@intel.com>
* ia64.h (ia64_find_opcode): Remove argument name.
(ia64_find_next_opcode): Likewise.
(ia64_dis_opcode): Likewise.
(ia64_free_opcode): Likewise.
(ia64_find_dependency): Likewise.
Diffstat (limited to 'include/opcode')
-rw-r--r-- | include/opcode/ChangeLog | 8 | ||||
-rw-r--r-- | include/opcode/ia64.h | 12 |
2 files changed, 14 insertions, 6 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 79ceb03..e89bd51 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,11 @@ +2010-01-14 H.J. Lu <hongjiu.lu@intel.com> + + * ia64.h (ia64_find_opcode): Remove argument name. + (ia64_find_next_opcode): Likewise. + (ia64_dis_opcode): Likewise. + (ia64_free_opcode): Likewise. + (ia64_find_dependency): Likewise. + 2009-11-22 Doug Evans <dje@sebabeach.org> * cgen.h: Include bfd_stdint.h. diff --git a/include/opcode/ia64.h b/include/opcode/ia64.h index 67b229c..86c0e15 100644 --- a/include/opcode/ia64.h +++ b/include/opcode/ia64.h @@ -381,14 +381,14 @@ extern struct ia64_opcode ia64_opcodes_f[]; extern struct ia64_opcode ia64_opcodes_d[]; -extern struct ia64_opcode *ia64_find_opcode (const char *name); -extern struct ia64_opcode *ia64_find_next_opcode (struct ia64_opcode *ent); +extern struct ia64_opcode *ia64_find_opcode (const char *); +extern struct ia64_opcode *ia64_find_next_opcode (struct ia64_opcode *); -extern struct ia64_opcode *ia64_dis_opcode (ia64_insn insn, - enum ia64_insn_type type); +extern struct ia64_opcode *ia64_dis_opcode (ia64_insn, + enum ia64_insn_type); -extern void ia64_free_opcode (struct ia64_opcode *ent); -extern const struct ia64_dependency *ia64_find_dependency (int index); +extern void ia64_free_opcode (struct ia64_opcode *); +extern const struct ia64_dependency *ia64_find_dependency (int); /* To avoid circular library dependencies, this array is implemented in bfd/cpu-ia64-opc.c: */ |