diff options
Diffstat (limited to 'gdb/dwarf2expr.c')
-rw-r--r-- | gdb/dwarf2expr.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/dwarf2expr.c b/gdb/dwarf2expr.c index af9fc0fc587..b9ae108c5ff 100644 --- a/gdb/dwarf2expr.c +++ b/gdb/dwarf2expr.c @@ -403,6 +403,12 @@ execute_stack_op (struct dwarf_expr_context *ctx, result = extract_unsigned_integer (op_ptr, ctx->addr_size, byte_order); op_ptr += ctx->addr_size; + /* Some versions of GCC emit DW_OP_addr before + DW_OP_GNU_push_tls_address. In this case the value is an + index, not an address. We don't support things like + branching between the address and the TLS op. */ + if (op_ptr >= op_end || *op_ptr != DW_OP_GNU_push_tls_address) + result += ctx->offset; break; case DW_OP_const1u: |