]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb: fix comment in arm-tdep.c
authorSimon Marchi <simon.marchi@polymtl.ca>
Sat, 14 Nov 2020 16:16:41 +0000 (11:16 -0500)
committerSimon Marchi <simon.marchi@polymtl.ca>
Sat, 14 Nov 2020 16:18:59 +0000 (11:18 -0500)
gdb/ChangeLog:

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

Change-Id: I8f5355b314e8db643b645a6281042f514b46a908

gdb/ChangeLog
gdb/arm-tdep.c

index 2ae57d2d42d2f5e9fdcba26d29ea23928c565b52..43da682fbf4ae15f4cd7b5a44f07dcfc404fafed 100644 (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)
index 3f584b94a6b0827b176e432b16d57f240ae2ce12..d1e3a98c0b5d3364d2799a67de8512f4ea8af0cc 100644 (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;
 };