|
@@ -325,6 +325,7 @@ struct hist_entry *__hists__add_branch_entry(struct hists *self,
|
|
.parent = sym_parent,
|
|
.parent = sym_parent,
|
|
.filtered = symbol__parent_filter(sym_parent),
|
|
.filtered = symbol__parent_filter(sym_parent),
|
|
.branch_info = bi,
|
|
.branch_info = bi,
|
|
|
|
+ .hists = self,
|
|
};
|
|
};
|
|
|
|
|
|
return add_hist_entry(self, &entry, al, period);
|
|
return add_hist_entry(self, &entry, al, period);
|
|
@@ -346,6 +347,7 @@ struct hist_entry *__hists__add_entry(struct hists *self,
|
|
.period = period,
|
|
.period = period,
|
|
.parent = sym_parent,
|
|
.parent = sym_parent,
|
|
.filtered = symbol__parent_filter(sym_parent),
|
|
.filtered = symbol__parent_filter(sym_parent),
|
|
|
|
+ .hists = self,
|
|
};
|
|
};
|
|
|
|
|
|
return add_hist_entry(self, &entry, al, period);
|
|
return add_hist_entry(self, &entry, al, period);
|