+2000-08-10 Andrew Cagney <cagney@ops1.cygnus.com>
+
+ * partial-stab.h (DBX_READ): Eliminate redundant check for null
+ ``pst''. Also fixes GCC warning.
+
2000-08-10 Andrew Cagney <cagney@ops1.cygnus.com>
* rs6000-nat.c (set_host_arch): Check value returned by
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;
}