amd64_analyze_prologue: fix incorrect comment
authorVictor Collod <vcollod@nvidia.com>
Wed, 24 Jun 2020 01:28:56 +0000 (18:28 -0700)
committerSimon Marchi <simon.marchi@polymtl.ca>
Thu, 6 Aug 2020 15:04:53 +0000 (11:04 -0400)
The width of the instruction didn't match the size of its operands.

2020-06-23  Victor Collod  <vcollod@nvidia.com>

* amd64-tdep.c (amd64_analyze_prologue): Fix incorrect comment.

Change-Id: I104ebfe0b3c24bd6a8d0f0c5a791b9676a930a54

gdb/ChangeLog
gdb/amd64-tdep.c

index 01f3c9e7519d61bf6bd52a3bef1201bdc6c82dd5..0dd7dcd29e91ac69923c7eef62e71b4760ee6e5e 100644 (file)
@@ -1,3 +1,7 @@
+2020-08-06  Victor Collod  <vcollod@nvidia.com>
+
+       * amd64-tdep.c (amd64_analyze_prologue): Fix incorrect comment.
+
 2020-08-05  Kevin Buettner  <kevinb@redhat.com>
 
        * corelow.c (core_target::build_file_mappings): Don't output
index 0ce9fbc2997313cdeff434d92851766a17dc510f..768fe63bdde7ddd331f724cce309840be57afb98 100644 (file)
@@ -2433,7 +2433,7 @@ amd64_analyze_prologue (struct gdbarch *gdbarch,
          return pc + 4;
        }
 
-      /* For X32, also check for `movq %esp, %ebp'.  */
+      /* For X32, also check for `movl %esp, %ebp'.  */
       if (gdbarch_ptr_bit (gdbarch) == 32)
        {
          if (memcmp (buf, mov_esp_ebp_1, 2) == 0