diff options
Diffstat (limited to 'src/cpu/minor/fetch2.cc')
-rw-r--r-- | src/cpu/minor/fetch2.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cpu/minor/fetch2.cc b/src/cpu/minor/fetch2.cc index ae02b1c22..394fe8549 100644 --- a/src/cpu/minor/fetch2.cc +++ b/src/cpu/minor/fetch2.cc @@ -563,8 +563,7 @@ Fetch2::getScheduledThread() } for (auto tid : priority_list) { - if (cpu.getContext(tid)->status() == ThreadContext::Active && - getInput(tid) && !fetchInfo[tid].blocked) { + if (getInput(tid) && !fetchInfo[tid].blocked) { threadPriority = tid; return tid; } |