summaryrefslogtreecommitdiff
path: root/gdb/symtab.c
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2011-10-29 07:26:07 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2011-10-29 07:26:07 +0000
commit6ab8d799843282ad73a36aeff5852dfa78fe5357 (patch)
tree123f6d6d2b7b03e289c999420e19d6317b85d9bb /gdb/symtab.c
parentfbba457651459c1cf05f5b54e21f2f73c6d63a10 (diff)
downloadgdb-6ab8d799843282ad73a36aeff5852dfa78fe5357.tar.gz
gdb/
Code cleanup. * symtab.c (skip_prologue_sal): Code reformatting.
Diffstat (limited to 'gdb/symtab.c')
-rw-r--r--gdb/symtab.c4
1 files changed, 2 insertions, 2 deletions
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))))
{