diff options
author | Andrew Lukefahr <lukefahr@umich.edu> | 2012-03-21 10:34:06 -0500 |
---|---|---|
committer | Andrew Lukefahr <lukefahr@umich.edu> | 2012-03-21 10:34:06 -0500 |
commit | b4e5be717de68309cbe2bec87b18511c780d417e (patch) | |
tree | c507d90a187a1c26c1e84da3338ea6e4083827dd /src/cpu | |
parent | 0376422c0b059c941ffeea07252ae53a3ab6baa6 (diff) | |
download | gem5-b4e5be717de68309cbe2bec87b18511c780d417e.tar.xz |
O3: Fix sizing of decode to rename skid buffer.
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/o3/rename_impl.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/o3/rename_impl.hh b/src/cpu/o3/rename_impl.hh index 04935604e..678927813 100644 --- a/src/cpu/o3/rename_impl.hh +++ b/src/cpu/o3/rename_impl.hh @@ -87,7 +87,7 @@ DefaultRename<Impl>::DefaultRename(O3CPU *_cpu, DerivO3CPUParams *params) } // @todo: Make into a parameter. - skidBufferMax = (2 * (iewToRenameDelay * params->decodeWidth)) + renameWidth; + skidBufferMax = (2 * (decodeToRenameDelay * params->decodeWidth)) + renameWidth; } template <class Impl> |