On Tue, Nov 1, 2016 at 12:10 PM, Jakub Jelinek <ja...@redhat.com> wrote: > + && !get_AT (var_die, DW_AT_inline) > + && (origin_die == NULL || get_AT (origin_die, DW_AT_inline) == NULL)
Can we drop this repetition (here and for DW_AT_const_expr)? get_AT should look through DW_AT_abstract_origin, and we should have added that earlier in gen_variable_die. OK with that change. Jason