gdb: fix comment in arm-tdep.c

gdb/ChangeLog:

	* arm-tdep.c (class arm_instruction_reader) <read>: Fix comment.

Change-Id: I8f5355b314e8db643b645a6281042f514b46a908
This commit is contained in:
Simon Marchi 2020-11-14 11:16:41 -05:00
parent 0fa0fc8539
commit 2c5b1849a6
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2020-11-14 Simon Marchi <simon.marchi@polymtl.ca>
* arm-tdep.c (class arm_instruction_reader) <read>: Fix comment.
2020-11-13 Tom Tromey <tom@tromey.com>
* c-lang.c (convert_ucn, convert_octal, convert_hex)

View File

@ -292,8 +292,7 @@ namespace {
class arm_instruction_reader
{
public:
/* Read a 4 bytes instruction bytes from memory using the BYTE_ORDER
endianness. */
/* Read a 4 bytes instruction from memory using the BYTE_ORDER endianness. */
virtual uint32_t read (CORE_ADDR memaddr, bfd_endian byte_order) const = 0;
};