diff options
author | Korey Sewell <ksewell@umich.edu> | 2009-05-12 15:01:15 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2009-05-12 15:01:15 -0400 |
commit | fe4cd9847db2b2d7d566a921670c92fa39d14136 (patch) | |
tree | a27928cb7e56f26cdd9bb34899d747ff0a91644f /src/cpu/inorder/resource.hh | |
parent | 6211fe5d2ee00dae9cd72d9cccdc900241a8f9a2 (diff) | |
download | gem5-fe4cd9847db2b2d7d566a921670c92fa39d14136.tar.xz |
inorder-stc: update interface to handle store conditionals
Diffstat (limited to 'src/cpu/inorder/resource.hh')
-rw-r--r-- | src/cpu/inorder/resource.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/inorder/resource.hh b/src/cpu/inorder/resource.hh index 0c0aad758..0378c0f50 100644 --- a/src/cpu/inorder/resource.hh +++ b/src/cpu/inorder/resource.hh @@ -140,7 +140,7 @@ class Resource { * if instruction is actually in resource before * trying to do access.Needs to be defined for derived units. */ - virtual Fault doDataAccess(DynInstPtr inst) + virtual Fault doDataAccess(DynInstPtr inst, uint64_t *res=NULL) { panic("doDataAccess undefined for %s", name()); return NoFault; } virtual void prefetch(DynInstPtr inst) |