diff options
author | Nikos Nikoleris <nikos.nikoleris@arm.com> | 2017-02-21 14:14:45 +0000 |
---|---|---|
committer | Nikos Nikoleris <nikos.nikoleris@arm.com> | 2017-02-21 14:14:45 +0000 |
commit | 83028e730cd57755e948593fd2caec1b6b45ec18 (patch) | |
tree | 010fac097e25c5e08e867a85ed88279c8a4b7e3c /src/mem/cache/blk.hh | |
parent | cb97118d910696f8ccf95aca9bf9f658b4355ad6 (diff) | |
download | gem5-83028e730cd57755e948593fd2caec1b6b45ec18.tar.xz |
mem: Remove the unused asid field from the CacheBlk class
Change-Id: I29f45733c5fad822bdd0d8dcc7939d86b2e8c97b
Reviewed-by: Andreas Hansson <andreas.hansson@arm.com>
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src/mem/cache/blk.hh')
-rw-r--r-- | src/mem/cache/blk.hh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mem/cache/blk.hh b/src/mem/cache/blk.hh index 700847030..ef5eff7c5 100644 --- a/src/mem/cache/blk.hh +++ b/src/mem/cache/blk.hh @@ -82,8 +82,6 @@ class CacheBlk /** Task Id associated with this block */ uint32_t task_id; - /** The address space ID of this block. */ - int asid; /** Data block tag value. */ Addr tag; /** @@ -169,7 +167,7 @@ class CacheBlk CacheBlk() : task_id(ContextSwitchTaskId::Unknown), - asid(-1), tag(0), data(0) ,size(0), status(0), whenReady(0), + tag(0), data(0) ,size(0), status(0), whenReady(0), set(-1), way(-1), isTouched(false), refCount(0), srcMasterId(Request::invldMasterId), tickInserted(0) |