diff options
author | Yao Qi <yao.qi@linaro.org> | 2015-10-12 11:28:39 +0100 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2015-10-12 11:28:39 +0100 |
commit | e1c587c312c6347d8f14a019b79e4de0181de599 (patch) | |
tree | c3545fe6f400cda3ce0c432d24946a34caae79e0 /gdb/aarch64-tdep.c | |
parent | 0fd8ac1c450d340d0b11823107d9e990341e7e11 (diff) | |
download | gdb-e1c587c312c6347d8f14a019b79e4de0181de599.zip gdb-e1c587c312c6347d8f14a019b79e4de0181de599.tar.gz gdb-e1c587c312c6347d8f14a019b79e4de0181de599.tar.bz2 |
Rename emit_insn to aarch64_emit_insn
As emit_insn becomes extern, the prefix "aarch64_" is needed. This
patch renames emit_insn to aarch64_emit_insn.
gdb:
2015-10-12 Yao Qi <yao.qi@linaro.org>
* arch/aarch64-insn.c (emit_insn): Rename to ...
(aarch64_emit_insn): ... it. All callers updated.
gdb/gdbserver:
2015-10-12 Yao Qi <yao.qi@linaro.org>
* linux-aarch64-low.c: Update all callers of function renaming
from emit_insn to aarch64_emit_insn.
Diffstat (limited to 'gdb/aarch64-tdep.c')
-rw-r--r-- | gdb/aarch64-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/aarch64-tdep.c b/gdb/aarch64-tdep.c index 8426063..995cbcf 100644 --- a/gdb/aarch64-tdep.c +++ b/gdb/aarch64-tdep.c @@ -2771,7 +2771,7 @@ aarch64_displaced_step_others (const uint32_t insn, struct aarch64_displaced_step_data *dsd = (struct aarch64_displaced_step_data *) data; - emit_insn (dsd->insn_buf, insn); + aarch64_emit_insn (dsd->insn_buf, insn); dsd->insn_count = 1; if ((insn & 0xfffffc1f) == 0xd65f0000) |