Commit f83e6475 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dbghelp/dwarf: Don't skip functions when their inlined flag comes from an abstract origin.

parent 0c42b9e1
......@@ -2242,6 +2242,7 @@ static struct symt* dwarf2_parse_subprogram(dwarf2_debug_info_t* di)
* a concrete object that we'll handle
*/
if (dwarf2_find_attribute(di, DW_AT_inline, &inline_flags) &&
inline_flags.gotten_from == attr_direct &&
inline_flags.u.uvalue != DW_INL_not_inlined)
{
TRACE("Function %s declared as inlined (%ld)... skipping\n",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment