diff options
Diffstat (limited to 'tapsets.cxx')
-rw-r--r-- | tapsets.cxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tapsets.cxx b/tapsets.cxx index cafb5639..8d08ea5e 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -716,12 +716,9 @@ dwflpp choose_next_line = false; } - else - { - map<Dwarf_Addr, func_info>::const_iterator i = funcs.find (addr); - if (i != funcs.end()) - choose_next_line = true; - } + map<Dwarf_Addr, func_info>::const_iterator i = funcs.find (addr); + if (i != funcs.end()) + choose_next_line = true; previous_addr = addr; } } |