summaryrefslogtreecommitdiff
path: root/src/cpu/inorder/reg_dep_map.hh
diff options
context:
space:
mode:
authorKorey Sewell <ksewell@umich.edu>2011-06-19 21:43:36 -0400
committerKorey Sewell <ksewell@umich.edu>2011-06-19 21:43:36 -0400
commit264e8178ff8e97df4fde62359a01898a8af7ae26 (patch)
treec9d01b656acd914d12974519440a799de11c443d /src/cpu/inorder/reg_dep_map.hh
parentf0f33ae2b9be89c062c1df3c61291aa60151713e (diff)
downloadgem5-264e8178ff8e97df4fde62359a01898a8af7ae26.tar.xz
imported patch squash_from_next_stage
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;