projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d29d7c4
)
o3: correct the number of cc registers in rename map
author
Nilay Vaish
<nilay@cs.wisc.edu>
Sat, 4 Jul 2015 15:43:46 +0000
(10:43 -0500)
committer
Nilay Vaish
<nilay@cs.wisc.edu>
Sat, 4 Jul 2015 15:43:46 +0000
(10:43 -0500)
src/cpu/o3/rename_map.cc
patch
|
blob
|
history
diff --git
a/src/cpu/o3/rename_map.cc
b/src/cpu/o3/rename_map.cc
index 25289825cfb9838172e29a9f73ae07edcb0d0b31..b0232df2084c1c1fc1779e24982903996fcb59d0 100644
(file)
--- a/
src/cpu/o3/rename_map.cc
+++ b/
src/cpu/o3/rename_map.cc
@@
-98,7
+98,7
@@
UnifiedRenameMap::init(PhysRegFile *_regFile,
floatMap.init(TheISA::NumFloatRegs, &(freeList->floatList), _floatZeroReg);
- ccMap.init(TheISA::Num
Float
Regs, &(freeList->ccList), (RegIndex)-1);
+ ccMap.init(TheISA::Num
CC
Regs, &(freeList->ccList), (RegIndex)-1);
}