diff options
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 68b6483..1ca53bb 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -15111,7 +15111,11 @@ loc_list_from_tree (tree loc, int want_address) if (!targetm.emutls.debug_form_tls_address || !(dwarf_version >= 3 || !dwarf_strict)) return 0; - loc = emutls_decl (loc); + /* We stuffed the control variable into the DECL_VALUE_EXPR + to signal (via DECL_HAS_VALUE_EXPR_P) that the decl should + no longer appear in gimple code. We used the control + variable in specific so that we could pick it up here. */ + loc = DECL_VALUE_EXPR (loc); first_op = DW_OP_addr; second_op = DW_OP_form_tls_address; } |