X86: Make sure the predecoder is cleared out for interrupts.

This commit is contained in:
Gabe Black
2009-02-01 00:04:34 -08:00
parent 3ecc38cb8b
commit 7720968949

View File

@@ -321,6 +321,7 @@ BaseSimpleCPU::checkForInterrupts()
Fault interrupt = interrupts->getInterrupt(tc);
if (interrupt != NoFault) {
predecoder.reset();
interrupts->updateIntrInfo(tc);
interrupt->invoke(tc);
}