summaryrefslogtreecommitdiff
path: root/src/cpu/inorder/resources/cache_unit.hh
diff options
context:
space:
mode:
authorKorey Sewell <ksewell@umich.edu>2011-02-04 00:08:21 -0500
committerKorey Sewell <ksewell@umich.edu>2011-02-04 00:08:21 -0500
commit56ce8acd412747b728b7ad02537a3afd202ae8e8 (patch)
tree258f92450c7ece7a37f093c922b11b80698ec252 /src/cpu/inorder/resources/cache_unit.hh
parentab3d37d398a59e15cec656ca2b8790a7bc19ad48 (diff)
downloadgem5-56ce8acd412747b728b7ad02537a3afd202ae8e8.tar.xz
inorder: overload find-req fn
no need to have separate function name findSplitRequest, just overload the function
Diffstat (limited to 'src/cpu/inorder/resources/cache_unit.hh')
-rw-r--r--src/cpu/inorder/resources/cache_unit.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/inorder/resources/cache_unit.hh b/src/cpu/inorder/resources/cache_unit.hh
index 69c1dbd9e..ece06be83 100644
--- a/src/cpu/inorder/resources/cache_unit.hh
+++ b/src/cpu/inorder/resources/cache_unit.hh
@@ -124,7 +124,7 @@ class CacheUnit : public Resource
unsigned cmd);
ResReqPtr findRequest(DynInstPtr inst);
- ResReqPtr findSplitRequest(DynInstPtr inst, int idx);
+ ResReqPtr findRequest(DynInstPtr inst, int idx);
void requestAgain(DynInstPtr inst, bool &try_request);