cpu: o3: another assert instead of check
This commit is contained in:
parent
5003ed5f7a
commit
e5fbc67e16
1 changed files with 2 additions and 4 deletions
|
@ -1338,10 +1338,8 @@ DefaultCommit<Impl>::markCompletedInsts()
|
|||
{
|
||||
// Grab completed insts out of the IEW instruction queue, and mark
|
||||
// instructions completed within the ROB.
|
||||
for (int inst_num = 0;
|
||||
inst_num < fromIEW->size && fromIEW->insts[inst_num];
|
||||
++inst_num)
|
||||
{
|
||||
for (int inst_num = 0; inst_num < fromIEW->size; ++inst_num) {
|
||||
assert(fromIEW->insts[inst_num]);
|
||||
if (!fromIEW->insts[inst_num]->isSquashed()) {
|
||||
DPRINTF(Commit, "[tid:%i]: Marking PC %s, [sn:%lli] ready "
|
||||
"within ROB.\n",
|
||||
|
|
Loading…
Reference in a new issue