The text stat printer didn't output fully qualified names for
new-style dist stats. Fix that.
Change-Id: I61bc7403fbd760bbbb0641e8e593781e6d03a4ed
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/21162
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Bobby R. Bruce <bbruce@ucdavis.edu>
{
init(text, info);
- name = info.name + "_" +
- (info.subnames[i].empty() ? (std::to_string(i)) : info.subnames[i]);
+ name = text->statName(
+ info.name + "_" +
+ (info.subnames[i].empty() ? (std::to_string(i)) : info.subnames[i]));
if (!info.subdescs[i].empty())
desc = info.subdescs[i];