diff options
author | Tom Tromey <tromey@redhat.com> | 2011-03-14 15:58:56 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2011-03-14 15:58:56 +0000 |
commit | 37b50a69d65e0c5176fd454436569504d3152f1d (patch) | |
tree | 05a7530463922a0fa38c7dafb861b91787615db4 /gdb/dwarf2loc.c | |
parent | 35fc36a8d684a136f959212c873945844be76971 (diff) | |
download | gdb-37b50a69d65e0c5176fd454436569504d3152f1d.zip gdb-37b50a69d65e0c5176fd454436569504d3152f1d.tar.gz gdb-37b50a69d65e0c5176fd454436569504d3152f1d.tar.bz2 |
PR gdb/12576:
* dwarf2loc.c (dwarf_expr_dwarf_call): Remove 'return'.
(needs_frame_dwarf_call): Likewise.
Diffstat (limited to 'gdb/dwarf2loc.c')
-rw-r--r-- | gdb/dwarf2loc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/dwarf2loc.c b/gdb/dwarf2loc.c index 0c4d834..f90ee71 100644 --- a/gdb/dwarf2loc.c +++ b/gdb/dwarf2loc.c @@ -282,8 +282,8 @@ dwarf_expr_dwarf_call (struct dwarf_expr_context *ctx, size_t die_offset) { struct dwarf_expr_baton *debaton = ctx->baton; - return per_cu_dwarf_call (ctx, die_offset, debaton->per_cu, - ctx->get_frame_pc, ctx->baton); + per_cu_dwarf_call (ctx, die_offset, debaton->per_cu, + ctx->get_frame_pc, ctx->baton); } struct piece_closure @@ -1274,8 +1274,8 @@ needs_frame_dwarf_call (struct dwarf_expr_context *ctx, size_t die_offset) { struct needs_frame_baton *nf_baton = ctx->baton; - return per_cu_dwarf_call (ctx, die_offset, nf_baton->per_cu, - ctx->get_frame_pc, ctx->baton); + per_cu_dwarf_call (ctx, die_offset, nf_baton->per_cu, + ctx->get_frame_pc, ctx->baton); } /* Return non-zero iff the location expression at DATA (length SIZE) |