From bb007aa738b5383fc038b134aaf7d2082a6a22c8 Mon Sep 17 00:00:00 2001 From: "Daniel R. Carvalho" Date: Wed, 3 Oct 2018 14:37:15 +0200 Subject: mem-cache: Fix FALRU inCachesMask initialization inCachesMask is not being initialized, which triggers an assertion on insertion. Fix this by implementing a default constructor for the FALRUBlk. Change-Id: I587cf5e0191c4587d938e6ab6036ec1b32f37793 Signed-off-by: Daniel R. Carvalho Reviewed-on: https://gem5-review.googlesource.com/c/13207 Reviewed-by: Nikos Nikoleris Reviewed-by: Jason Lowe-Power Maintainer: Nikos Nikoleris Maintainer: Jason Lowe-Power --- src/mem/cache/tags/fa_lru.hh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/mem/cache') diff --git a/src/mem/cache/tags/fa_lru.hh b/src/mem/cache/tags/fa_lru.hh index 876219b00..55362a424 100644 --- a/src/mem/cache/tags/fa_lru.hh +++ b/src/mem/cache/tags/fa_lru.hh @@ -82,6 +82,8 @@ typedef uint32_t CachesMask; class FALRUBlk : public CacheBlk { public: + FALRUBlk() : CacheBlk(), prev(nullptr), next(nullptr), inCachesMask(0) {} + /** The previous block in LRU order. */ FALRUBlk *prev; /** The next block in LRU order. */ -- cgit v1.2.3