misc: Replace M5_VAR_USED with GEM5_VAR_USED.
Change-Id: I64a874ccd1a9ac0541dfa01971d7d620a98c9d32 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/45231 Tested-by: kokoro <noreply+kokoro@google.com> Maintainer: Gabe Black <gabe.black@gmail.com> Reviewed-by: Daniel Carvalho <odanrc@yahoo.com.br>
This commit is contained in:
@@ -811,7 +811,7 @@ TraceCPU::ElasticDataGen::printReadyList()
|
||||
DPRINTF(TraceCPUData, "Printing readyList:\n");
|
||||
while (itr != readyList.end()) {
|
||||
auto graph_itr = depGraph.find(itr->seqNum);
|
||||
M5_VAR_USED GraphNode* node_ptr = graph_itr->second;
|
||||
GEM5_VAR_USED GraphNode* node_ptr = graph_itr->second;
|
||||
DPRINTFR(TraceCPUData, "\t%lld(%s), %lld\n", itr->seqNum,
|
||||
node_ptr->typeToStr(), itr->execTick);
|
||||
itr++;
|
||||
@@ -1322,7 +1322,7 @@ TraceCPU::ElasticDataGen::GraphNode::removeDepOnInst(NodeSeqNum done_seq_num)
|
||||
// If it is not an rob dependency then it must be a register dependency
|
||||
// If the register dependency is not found, it violates an assumption
|
||||
// and must be caught by assert.
|
||||
M5_VAR_USED bool regdep_found = removeRegDep(done_seq_num);
|
||||
GEM5_VAR_USED bool regdep_found = removeRegDep(done_seq_num);
|
||||
assert(regdep_found);
|
||||
}
|
||||
// Return true if the node is dependency free
|
||||
|
||||
Reference in New Issue
Block a user