diff options
author | Ingo Molnar <mingo@kernel.org> | 2013-09-26 20:49:53 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-09-26 20:49:53 +0200 |
commit | 474a83b76f6bde8a5f8f8e39d90181ca85d39f46 (patch) | |
tree | a9f8e2e790b74de50d85469ec79fb1c841c3da90 /tools/perf/util/dwarf-aux.h | |
parent | 16c21ae5ca636cfd38e581ebcf709c49d78ea56d (diff) | |
parent | 654fdd041227d7de1594baa61c58f2c87bd0640f (diff) |
Merge branch 'linus'
Merge in the relevant upstream merge point to queue up dependent patch.
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/perf/util/dwarf-aux.h')
-rw-r--r-- | tools/perf/util/dwarf-aux.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/perf/util/dwarf-aux.h b/tools/perf/util/dwarf-aux.h index 6ce1717784b7..8658d41697d2 100644 --- a/tools/perf/util/dwarf-aux.h +++ b/tools/perf/util/dwarf-aux.h @@ -38,6 +38,9 @@ extern int cu_find_lineinfo(Dwarf_Die *cudie, unsigned long addr, extern int cu_walk_functions_at(Dwarf_Die *cu_die, Dwarf_Addr addr, int (*callback)(Dwarf_Die *, void *), void *data); +/* Ensure that this DIE is a subprogram and definition (not declaration) */ +extern bool die_is_func_def(Dwarf_Die *dw_die); + /* Compare diename and tname */ extern bool die_compare_name(Dwarf_Die *dw_die, const char *tname); |