diff options
Diffstat (limited to 'src/mem/cache/cache.hh')
-rw-r--r-- | src/mem/cache/cache.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/cache/cache.hh b/src/mem/cache/cache.hh index a26d91709..989b8743e 100644 --- a/src/mem/cache/cache.hh +++ b/src/mem/cache/cache.hh @@ -108,7 +108,7 @@ class Cache : public BaseCache * Temporarily move a block into a MSHR. * @todo Remove this when LSQ/SB are fixed and implemented in memtest. */ - void pseudoFill(Addr addr, int asid); + void pseudoFill(Addr addr); /** * Temporarily move a block into an existing MSHR. @@ -218,7 +218,7 @@ class Cache : public BaseCache * @param asid The address space ID of the address. * @todo Is this function necessary? */ - void invalidateBlk(Addr addr, int asid); + void invalidateBlk(Addr addr); /** * Squash all requests associated with specified thread. |