stats: Correctly print new-style dist stat names
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>
This commit is contained in:
@@ -396,8 +396,9 @@ DistPrint::DistPrint(const Text *text, const VectorDistInfo &info, int i)
|
||||
{
|
||||
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];
|
||||
|
||||
Reference in New Issue
Block a user