base: Add missing overrides in statistics header
Change-Id: Id5ee2a970a3dceee1b7e24ce3b452b7fece87875 Signed-off-by: Nikos Nikoleris <nikos.nikoleris@arm.com> Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com> Reviewed-on: https://gem5-review.googlesource.com/c/14619 Reviewed-by: Jason Lowe-Power <jason@lowepower.com> Maintainer: Jason Lowe-Power <jason@lowepower.com>
This commit is contained in:
@@ -2320,7 +2320,7 @@ class BinaryNode : public Node
|
||||
BinaryNode(NodePtr &a, NodePtr &b) : l(a), r(b) {}
|
||||
|
||||
const VResult &
|
||||
result() const
|
||||
result() const override
|
||||
{
|
||||
Op op;
|
||||
const VResult &lvec = l->result();
|
||||
@@ -2352,7 +2352,7 @@ class BinaryNode : public Node
|
||||
}
|
||||
|
||||
Result
|
||||
total() const
|
||||
total() const override
|
||||
{
|
||||
const VResult &vec = this->result();
|
||||
const VResult &lvec = l->result();
|
||||
@@ -2384,7 +2384,7 @@ class BinaryNode : public Node
|
||||
}
|
||||
|
||||
size_type
|
||||
size() const
|
||||
size() const override
|
||||
{
|
||||
size_type ls = l->size();
|
||||
size_type rs = r->size();
|
||||
@@ -2399,7 +2399,7 @@ class BinaryNode : public Node
|
||||
}
|
||||
|
||||
std::string
|
||||
str() const
|
||||
str() const override
|
||||
{
|
||||
return csprintf("(%s %s %s)", l->str(), OpString<Op>::str(), r->str());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user