This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [PATCH] arm-tdep.c: Change type of insn parameters
- From: Yao Qi <qiyaoltc at gmail dot com>
- To: Simon Marchi <simon dot marchi at ericsson dot com>
- Cc: <gdb-patches at sourceware dot org>
- Date: Thu, 11 Feb 2016 10:58:37 +0000
- Subject: Re: [PATCH] arm-tdep.c: Change type of insn parameters
- Authentication-results: sourceware.org; auth=none
- References: <1455146137-30672-1-git-send-email-simon dot marchi at ericsson dot com>
Simon Marchi <simon.marchi@ericsson.com> writes:
> /* Copy 16-bit Thumb(Thumb and 16-bit Thumb-2) instruction without any
> modification. */
> static int
> -thumb_copy_unmodified_16bit (struct gdbarch *gdbarch, unsigned int insn,
> +thumb_copy_unmodified_16bit (struct gdbarch *gdbarch, uint32_t insn,
> const char *iname,
> struct displaced_step_closure *dsc)
The instruction here is 16-bit, so we should use "uint16_t".
OK with the change.
--
Yao (éå)