summaryrefslogtreecommitdiff
path: root/src/cpu/inorder/reg_dep_map.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/inorder/reg_dep_map.hh')
-rw-r--r--src/cpu/inorder/reg_dep_map.hh6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/cpu/inorder/reg_dep_map.hh b/src/cpu/inorder/reg_dep_map.hh
index 03eb6bd65..fa69e2234 100644
--- a/src/cpu/inorder/reg_dep_map.hh
+++ b/src/cpu/inorder/reg_dep_map.hh
@@ -98,10 +98,8 @@ class RegDepMap
*/
void insert(uint8_t reg_type, RegIndex idx, DynInstPtr inst);
- /** Remove a specific instruction and dest. register index from map
- * This must be called w/the unflattened registered index
- */
- void remove(RegIndex idx, DynInstPtr inst);
+ /** Remove a specific instruction and dest. register index from map */
+ void remove(uint8_t reg_type, RegIndex idx, DynInstPtr inst);
typedef std::vector<std::list<DynInstPtr> > DepMap;
std::vector<DepMap> regMap;