diff options
author | Kevin Lim <ktlim@umich.edu> | 2007-04-09 14:29:59 -0400 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2007-04-09 14:29:59 -0400 |
commit | 0cc343d41dd7afe725728008220fc22633195389 (patch) | |
tree | f55f134b5ed14527f16761a272f9260a19fb9d0e | |
parent | 077183f7ece6aa7fcb009fb078e2e1a3370f9327 (diff) | |
download | gem5-0cc343d41dd7afe725728008220fc22633195389.tar.xz |
Fix bug when blocking due to no free registers.
--HG--
extra : convert_revision : a1a218d3294515184689041487057495223360b7
-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 c0d34116d..ec630b31e 100644 --- a/src/cpu/o3/rename_impl.hh +++ b/src/cpu/o3/rename_impl.hh @@ -692,7 +692,7 @@ DefaultRename<Impl>::renameInsts(unsigned tid) DPRINTF(Rename, "Blocking due to lack of free " "physical registers to rename to.\n"); blockThisCycle = true; - + insts_to_rename.push_front(inst); ++renameFullRegistersEvents; break; |