diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2017-09-18 13:09:20 +0200 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2017-09-18 13:09:20 +0200 |
commit | 0615127c587253a6386fe49468fd64abf827273e (patch) | |
tree | 079e3940b988836a4a365b92f81371d6f8736338 /gdb/dwarf2expr.c | |
parent | e4114cb89e65c53839d5beb80cec956476ecb5dc (diff) | |
download | gdb-0615127c587253a6386fe49468fd64abf827273e.zip gdb-0615127c587253a6386fe49468fd64abf827273e.tar.gz gdb-0615127c587253a6386fe49468fd64abf827273e.tar.bz2 |
dwarf2expr: Remove unused abort_expression label in execute_stack_op
The label abort_expression is unused, so remove it.
gdb/ChangeLog:
* dwarf2expr.c (dwarf_expr_context::execute_stack_op): Remove
label abort_expression.
Diffstat (limited to 'gdb/dwarf2expr.c')
-rw-r--r-- | gdb/dwarf2expr.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/dwarf2expr.c b/gdb/dwarf2expr.c index f5e0e4c..1475d93 100644 --- a/gdb/dwarf2expr.c +++ b/gdb/dwarf2expr.c @@ -1402,7 +1402,6 @@ dwarf_expr_context::execute_stack_op (const gdb_byte *op_ptr, if (this->location == DWARF_VALUE_IMPLICIT_POINTER) add_piece (8 * this->addr_size, 0); -abort_expression: this->recursion_depth--; gdb_assert (this->recursion_depth >= 0); } |