diff options
author | Cary Coutant <ccoutant@google.com> | 2015-02-06 13:09:21 -0800 |
---|---|---|
committer | Cary Coutant <ccoutant@google.com> | 2015-02-22 23:43:48 -0800 |
commit | 589778e030658d5aa1a90623f72728b875d1cd3c (patch) | |
tree | 77232aad621086df8f820593bd08dbaedf96574a | |
parent | b3759731e0335ea593361c4280587ee6b29f148f (diff) | |
download | gdb-589778e030658d5aa1a90623f72728b875d1cd3c.zip gdb-589778e030658d5aa1a90623f72728b875d1cd3c.tar.gz gdb-589778e030658d5aa1a90623f72728b875d1cd3c.tar.bz2 |
Fix formatting.
2015-02-06 Cary Coutant <ccoutant@google.com>
binutils/
* dwarf.c (display_debug_lines_raw): Fix formatting.
-rw-r--r-- | binutils/dwarf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 0dd428a..c9741c0 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -3391,8 +3391,8 @@ display_debug_lines_raw (struct dwarf_section *section, printf (_(" Offset: 0x%lx\n"), (long)(data - start)); printf (_(" Length: %ld\n"), (long) linfo.li_length); printf (_(" DWARF Version: %d\n"), linfo.li_version); - if (linfo.li_version >= 5 && - linfo.li_version != DWARF2_LINE_EXPERIMENTAL_VERSION) + if (linfo.li_version >= 5 + && linfo.li_version != DWARF2_LINE_EXPERIMENTAL_VERSION) { printf (_(" Address Size: %u\n"), linfo.li_address_size); printf (_(" Segment Size: %u\n"), linfo.li_segment_size); @@ -3407,8 +3407,8 @@ display_debug_lines_raw (struct dwarf_section *section, printf (_(" Opcode Base: %d\n"), linfo.li_opcode_base); end_of_header_length = data + initial_length_size + 2 + offset_size; - if (linfo.li_version >= 5 && - linfo.li_version != DWARF2_LINE_EXPERIMENTAL_VERSION) + if (linfo.li_version >= 5 + && linfo.li_version != DWARF2_LINE_EXPERIMENTAL_VERSION) end_of_header_length += 2; start_of_line_program = end_of_header_length + linfo.li_prologue_length; end_of_logicals = end; |