Skip to content

Commit b3980ec

Browse files
committed
comment cout
1 parent 67bb0cc commit b3980ec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

core/lsu/LSU.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,8 @@ namespace olympia
282282

283283
if (inst_ptr->isStoreInst())
284284
{
285-
std::cout << "RETIRE: Buffer size before:" << store_buffer_.size()
286-
<< " UID:" << inst_ptr->getUniqueID() << "\n";
285+
// std::cout << "RETIRE: Buffer size before:" << store_buffer_.size()
286+
// << " UID:" << inst_ptr->getUniqueID() << "\n";
287287
auto oldest_store = getOldestStore_();
288288
sparta_assert(oldest_store && oldest_store->getInstPtr()->getUniqueID() == inst_ptr->getUniqueID(),
289289
"Attempting to retire store out of order! Expected: "
@@ -1446,7 +1446,7 @@ namespace olympia
14461446

14471447
void LSU::flushStoreBuffer_(const FlushCriteria & criteria)
14481448
{
1449-
std::cout << "FLUSH: Store buffer size before:" << store_buffer_.size() << "\n";
1449+
// std::cout << "FLUSH: Store buffer size before:" << store_buffer_.size() << "\n";
14501450
auto sb_iter = store_buffer_.begin();
14511451
while(sb_iter != store_buffer_.end()) {
14521452
auto inst_ptr = (*sb_iter)->getInstPtr();
@@ -1459,7 +1459,7 @@ namespace olympia
14591459
++sb_iter;
14601460
}
14611461
}
1462-
std::cout << "FLUSH: Store buffer size after:" << store_buffer_.size() << "\n";
1462+
// std::cout << "FLUSH: Store buffer size after:" << store_buffer_.size() << "\n";
14631463
}
14641464

14651465
} // namespace olympia

0 commit comments

Comments
 (0)