From: Jan Kratochvil Date: Sat, 29 Oct 2011 07:26:07 +0000 (+0000) Subject: gdb/ X-Git-Tag: sid-snapshot-20111101~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b1d96efdaaa2b0e069f4fe0fab838b66403d42f9;p=thirdparty%2Fbinutils-gdb.git gdb/ Code cleanup. * symtab.c (skip_prologue_sal): Code reformatting. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d47a3b0fad9..eb4c77580ae 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2011-10-29 Jan Kratochvil + + Code cleanup. + * symtab.c (skip_prologue_sal): Code reformatting. + 2011-10-28 Jan Kratochvil PR symtab/13208 diff --git a/gdb/symtab.c b/gdb/symtab.c index 0e4c363203d..f8812267bb0 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -2549,8 +2549,8 @@ skip_prologue_sal (struct symtab_and_line *sal) /* Check if gdbarch_skip_prologue left us in mid-line, and the next line is still part of the same function. */ if (skip && start_sal.pc != pc - && (sym? (BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) <= start_sal.end - && start_sal.end < BLOCK_END (SYMBOL_BLOCK_VALUE (sym))) + && (sym ? (BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) <= start_sal.end + && start_sal.end < BLOCK_END (SYMBOL_BLOCK_VALUE (sym))) : (lookup_minimal_symbol_by_pc_section (start_sal.end, section) == lookup_minimal_symbol_by_pc_section (pc, section)))) {