diff --git a/src/cpu/o3/decode_impl.hh b/src/cpu/o3/decode_impl.hh index 22b89f4a89..fd8dc834bd 100644 --- a/src/cpu/o3/decode_impl.hh +++ b/src/cpu/o3/decode_impl.hh @@ -64,7 +64,7 @@ DefaultDecode::DefaultDecode(O3CPU *_cpu, DerivO3CPUParams *params) } // @todo: Make into a parameter - skidBufferMax = (fetchToDecodeDelay * params->fetchWidth) + decodeWidth; + skidBufferMax = (fetchToDecodeDelay + 1) * params->fetchWidth; } template