cpu: Implement a flat register interface in thread contexts
[gem5.git] / src / cpu / inorder / reg_dep_map.hh
index 03eb6bd65d95a98fbc49c873460c083dfd108e65..fa69e22342166f7173685fccd52b36c96865226c 100644 (file)
@@ -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;