diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-08-11 01:47:47 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-08-11 01:47:47 +0000 |
commit | c5f231f75bfd3c9195d98fc2788c10fc98f4a499 (patch) | |
tree | 1abb0b9f3768a63adde8f695c57f7cca31372393 /gdb/partial-stab.h | |
parent | 16f33e29665bda543991f02b53da05d7e6486f13 (diff) | |
download | gdb-c5f231f75bfd3c9195d98fc2788c10fc98f4a499.zip gdb-c5f231f75bfd3c9195d98fc2788c10fc98f4a499.tar.gz gdb-c5f231f75bfd3c9195d98fc2788c10fc98f4a499.tar.bz2 |
Eliminate redundant pst test.
Diffstat (limited to 'gdb/partial-stab.h')
-rw-r--r-- | gdb/partial-stab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/partial-stab.h b/gdb/partial-stab.h index c07d957..6691b75 100644 --- a/gdb/partial-stab.h +++ b/gdb/partial-stab.h @@ -401,7 +401,7 @@ switch (CUR_SYMBOL_TYPE) function relative stabs, or the address of the function's end for old style stabs. */ valu = CUR_SYMBOL_VALUE + last_function_start; - if (pst && pst->texthigh == 0 || valu > pst->texthigh) + if (pst->texthigh == 0 || valu > pst->texthigh) pst->texthigh = valu; break; } |