commit | e5e7d55dcb225be1a488e01d43cbce5fdec83a0f | [log] [tgz] |
---|---|---|
author | Andrew Burgess <aburgess@redhat.com> | Sat Jan 25 13:05:46 2025 +0000 |
committer | Andrew Burgess <aburgess@redhat.com> | Wed Jan 29 09:21:42 2025 +0000 |
tree | 31f76c484597a43945da8422785dedbf60727443 | |
parent | d1b55b91df48f26a8541646bb88231ad5b9a0832 [diff] |
gdb: move debug output inside block in dwarf_record_line_1 The debug output that says a line has been recorded is currently outside the `if` block which decides if the line should be recorded or not. This means the debug output will claim the line was recorded, when actually it wasn't! Fixed by moving the debug output inside the `if` block. Should be no user visible changes after this commit (except if debug output is turned on). Approved-By: Tom Tromey <tom@tromey.com>