diff options
author | Yao Qi <yao.qi@linaro.org> | 2017-01-13 12:27:39 +0000 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2017-01-13 12:27:39 +0000 |
commit | 9608051a0eba6303adcadff7d09b70a36067fba3 (patch) | |
tree | 1f448bd4bb872d5a2187f26af3ac551611ef9791 /opcodes/ChangeLog | |
parent | f622ea96de49d77646f52501ef00d03132fcb2df (diff) | |
download | gdb-9608051a0eba6303adcadff7d09b70a36067fba3.zip gdb-9608051a0eba6303adcadff7d09b70a36067fba3.tar.gz gdb-9608051a0eba6303adcadff7d09b70a36067fba3.tar.bz2 |
Return -1 on memory error in print_insn_m68k
m68k-dis.c:print_insn_m68k doesn't return -1 on memory error, but GDB
expects it returning -1 on memory error.
opcodes:
2017-01-13 Yao Qi <yao.qi@linaro.org>
* m68k-dis.c (match_insn_m68k): Extend comments. Return -1
if FETCH_DATA returns 0.
(m68k_scan_mask): Likewise.
(print_insn_m68k): Update code to handle -1 return value.
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 0adbdf1..d4f35bd 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,5 +1,12 @@ 2017-01-13 Yao Qi <yao.qi@linaro.org> + * m68k-dis.c (match_insn_m68k): Extend comments. Return -1 + if FETCH_DATA returns 0. + (m68k_scan_mask): Likewise. + (print_insn_m68k): Update code to handle -1 return value. + +2017-01-13 Yao Qi <yao.qi@linaro.org> + * m68k-dis.c (enum print_insn_arg_error): New. (NEXTBYTE): Replace -3 with PRINT_INSN_ARG_MEMORY_ERROR. |