gdb: fix nits in previous patches
authorSimon Marchi <simon.marchi@efficios.com>
Mon, 31 Aug 2020 17:31:01 +0000 (13:31 -0400)
committerSimon Marchi <simon.marchi@efficios.com>
Mon, 31 Aug 2020 17:31:01 +0000 (13:31 -0400)
I forgot to fix some nits pointed out in review before merging the
"frame inlined in outer frame series", this patch fixes them.

gdb/ChangeLog:

* frame-unwind.h (frame_prev_register_ftype): Fix adjective
ordering in comment.
* frame.c (frame_id_eq): Fix indentation.

gdb/testsuite/ChangeLog:

* gdb.dwarf2/dw2-reg-undefined.exp: Remove spurious #.

Change-Id: Iaddde9677fc3f68382558d1a16f5a0b4beb78bac

gdb/ChangeLog
gdb/frame-unwind.h
gdb/frame.c
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.dwarf2/dw2-reg-undefined.exp

index 9637e4a7b12dcf393dedcbb7b48ac8ea20a5acca..cc998d5ee585616fdd76f2adc08b90e0cd34d7e3 100644 (file)
@@ -1,3 +1,9 @@
+2020-08-31  Simon Marchi  <simon.marchi@efficios.com>
+
+       * frame-unwind.h (frame_prev_register_ftype): Fix adjective
+       ordering in comment.
+       * frame.c (frame_id_eq): Fix indentation.
+
 2020-08-31  Scott Linder  <scott@scottlinder.com>
            Simon Marchi  <simon.marchi@efficios.com>
 
index 25a601ccf4bb0e21802e6305912cddfe27ffa683..6cc1a888861e38b8226a4ad208b7d7827a490b1a 100644 (file)
@@ -134,7 +134,7 @@ typedef void (frame_this_id_ftype) (struct frame_info *this_frame,
    a register in THIS frame, or a non-lvalue.
 
    If the previous frame's register was not saved by THIS_FRAME and is
-   therefore undefined, return a not_lval wholly optimized-out value.
+   therefore undefined, return a wholly optimized-out not_lval value.
 
    THIS_PROLOGUE_CACHE can be used to share any prolog analysis data
    with the other unwind methods.  Memory for that cache should be
index 54f4c613c9e870d857e3c9c01bc9ac6b7f738360..0b708e66827217dfced98cdb72008674cf8dd870 100644 (file)
@@ -774,7 +774,7 @@ frame_id_eq (frame_id l, frame_id r)
   bool eq;
 
   if (l.stack_status == FID_STACK_INVALID
-          || r.stack_status == FID_STACK_INVALID)
+      || r.stack_status == FID_STACK_INVALID)
     /* Like a NaN, if either ID is invalid, the result is false.
        Note that a frame ID is invalid iff it is the null frame ID.  */
     eq = false;
index 66f1fe8533f2382374c57a580ee43bcecf46550c..148f31d26dd6558f9f9432107de4be7d8f1be1a7 100644 (file)
@@ -1,3 +1,7 @@
+2020-08-31  Simon Marchi  <simon.marchi@efficios.com>
+
+       * gdb.dwarf2/dw2-reg-undefined.exp: Remove spurious #.
+
 2020-08-31  Simon Marchi  <simon.marchi@efficios.com>
 
        * gdb.dwarf2/frame-inlined-in-outer-frame.exp: New file.
index 4ab7e2dbfc449bb1c99cd0e87d3eb5272f8a2d6f..75ea1f7b88acc85e97f5eedf6241a143baffa8eb 100644 (file)
@@ -76,7 +76,7 @@ for {set f 0} {$f < 3} {incr f} {
 }
 
 # Test that the debug log statement in frame_unwind_register_value produces
-# "not saved" and not# "optimized out".
+# "not saved" and not "optimized out".
 gdb_test "set debug frame 1"
 gdb_test {print $rax} {frame_unwind_register_value[^\r\n]+rax[^\r\n]+not saved.*}
 gdb_test "set debug frame 0"