aboutsummaryrefslogtreecommitdiff
path: root/gdb/partial-stab.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/partial-stab.h')
-rw-r--r--gdb/partial-stab.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/gdb/partial-stab.h b/gdb/partial-stab.h
index 5dadf44..fcfb2ef 100644
--- a/gdb/partial-stab.h
+++ b/gdb/partial-stab.h
@@ -600,11 +600,10 @@ switch (CUR_SYMBOL_TYPE)
the bounds created by N_SO symbols. If that's the case
use the address of this function as the low bound for
the partial symbol table. */
- if (pst
- && (textlow_not_set
- || (pst && CUR_SYMBOL_VALUE < pst->textlow
- && CUR_SYMBOL_VALUE
- != ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)))))
+ if (textlow_not_set
+ || (pst && CUR_SYMBOL_VALUE < pst->textlow
+ && CUR_SYMBOL_VALUE
+ != ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile))))
{
pst->textlow = CUR_SYMBOL_VALUE;
textlow_not_set = 0;