diff options
author | Kevin Lim <ktlim@umich.edu> | 2007-04-26 00:02:37 -0400 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2007-04-26 00:02:37 -0400 |
commit | 15cc194d714ce9c3f5fe706487534ed447847d88 (patch) | |
tree | be9187d115eff132375bc5086719d329a3f20b20 | |
parent | f42469a3cf71a4364e3e38dacf23cb7431bdad5d (diff) | |
download | gem5-15cc194d714ce9c3f5fe706487534ed447847d88.tar.xz |
Remove unnecessary check.
--HG--
extra : convert_revision : 8cc2943ebc41e4d430789ee7923dd0dc878be06b
-rw-r--r-- | src/cpu/o3/commit_impl.hh | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/cpu/o3/commit_impl.hh b/src/cpu/o3/commit_impl.hh index 65625065d..dd4c333d3 100644 --- a/src/cpu/o3/commit_impl.hh +++ b/src/cpu/o3/commit_impl.hh @@ -641,9 +641,6 @@ DefaultCommit<Impl>::handleInterrupt() // an interrupt needed to be handled. DPRINTF(Commit, "Interrupt detected.\n"); - Fault new_interrupt = cpu->getInterrupts(); - assert(new_interrupt != NoFault); - // Clear the interrupt now that it's going to be handled toIEW->commitInfo[0].clearInterrupt = true; |