* dwarf2expr.c (dwarf_expr_fetch): Use correct comparison to
detect stack underflow.
+2005-10-17 Jim Blandy <jimb@redhat.com>
+
+ * dwarf2expr.c (dwarf_expr_fetch): Use correct comparison to
+ detect stack underflow.
+
2005-10-14 Paul Gilliam <pgilliam@us.ibm.com>
* rs6000-tdep.c (rs6000_register_reggroup_p): Add vscr to test for
CORE_ADDR
dwarf_expr_fetch (struct dwarf_expr_context *ctx, int n)
{
- if (ctx->stack_len < n)
+ if (ctx->stack_len <= n)
error (_("Asked for position %d of stack, stack only has %d elements on it."),
n, ctx->stack_len);
return ctx->stack[ctx->stack_len - (1 + n)];