summaryrefslogtreecommitdiff
path: root/src/cpu/o3/rename_impl.hh
diff options
context:
space:
mode:
authorAndrew Lukefahr <lukefahr@umich.edu>2012-03-21 10:34:06 -0500
committerAndrew Lukefahr <lukefahr@umich.edu>2012-03-21 10:34:06 -0500
commitb4e5be717de68309cbe2bec87b18511c780d417e (patch)
treec507d90a187a1c26c1e84da3338ea6e4083827dd /src/cpu/o3/rename_impl.hh
parent0376422c0b059c941ffeea07252ae53a3ab6baa6 (diff)
downloadgem5-b4e5be717de68309cbe2bec87b18511c780d417e.tar.xz
O3: Fix sizing of decode to rename skid buffer.
Diffstat (limited to 'src/cpu/o3/rename_impl.hh')
-rw-r--r--src/cpu/o3/rename_impl.hh2
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>