diff options
author | Yao Qi <yao.qi@linaro.org> | 2015-10-02 11:36:00 +0100 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2015-10-02 15:23:58 +0100 |
commit | 36f4aab18ccf897b405f137d6cd4f9673bd947fc (patch) | |
tree | 5d416d7c90ef4bc235703c9e5bdf0746487d9d22 /opcodes/ChangeLog | |
parent | 7232d38966babb802e9d8d0e9e591346a7b93d96 (diff) | |
download | gdb-36f4aab18ccf897b405f137d6cd4f9673bd947fc.zip gdb-36f4aab18ccf897b405f137d6cd4f9673bd947fc.tar.gz gdb-36f4aab18ccf897b405f137d6cd4f9673bd947fc.tar.bz2 |
[aarch64] expose disas_aarch64_insn and rename it to aarch64_decode_insn
We want to use disas_aarch64_insn inside GDB to decode instructions, so
this patch exposes it and rename it to aarch64_decode_insn to follow
the conventions of other interfaces.
include/opcode:
2015-10-02 Yao Qi <yao.qi@linaro.org>
* aarch64.h (aarch64_decode_insn): Declare it.
opcodes:
2015-10-02 Yao Qi <yao.qi@linaro.org>
* aarch64-dis.c (disas_aarch64_insn): Remove static. Change
argument insn type to aarch64_insn. Rename to ...
(aarch64_decode_insn): ... it.
(print_insn_aarch64_word): Caller updated.
Diffstat (limited to 'opcodes/ChangeLog')
-rw-r--r-- | opcodes/ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 051c42b..124ead7 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,5 +1,12 @@ 2015-10-02 Yao Qi <yao.qi@linaro.org> + * aarch64-dis.c (disas_aarch64_insn): Remove static. Change + argument insn type to aarch64_insn. Rename to ... + (aarch64_decode_insn): ... it. + (print_insn_aarch64_word): Caller updated. + +2015-10-02 Yao Qi <yao.qi@linaro.org> + * aarch64-dis.c (disas_aarch64_insn): Remove argument PC. (print_insn_aarch64_word): Caller updated. |