diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2017-09-22 17:12:43 -0300 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2017-09-22 17:12:43 -0300 |
commit | f9a656d5507e6c9db47e24036d5d5bbe7087dc7f (patch) | |
tree | f890a8dcd334f0f854793fb55bcbd64cbf56ddbf | |
parent | d7d1e62a378dd1e69fc36cf0796f4fc8d6bef47d (diff) | |
download | gdb-f9a656d5507e6c9db47e24036d5d5bbe7087dc7f.zip gdb-f9a656d5507e6c9db47e24036d5d5bbe7087dc7f.tar.gz gdb-f9a656d5507e6c9db47e24036d5d5bbe7087dc7f.tar.bz2 |
drop incorrect and unnecessary line break
-rw-r--r-- | binutils/dwarf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/binutils/dwarf.c b/binutils/dwarf.c index da16f32..af8732b 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -5757,8 +5757,7 @@ display_debug_loc (struct dwarf_section *section, void *file) { if (last_offset > debug_information [i].loc_offsets [j] - || (last_offset == - debug_information [i].loc_offsets [j] + || (last_offset == debug_information [i].loc_offsets [j] && last_view > debug_information [i].loc_views [j])) { locs_sorted = 0; |