Jason Lowe-Power has uploaded this change for review. ( https://gem5-review.googlesource.com/11349

Change subject: mem-cache: Fix TempCacheBlock insert
......................................................................

mem-cache: Fix TempCacheBlock insert

TempCacheBlock insert() had a different signature than the parent class
which caused an error on clang. This matches the signature with default
zero values.

Change-Id: Ic096914497f3d17e88295c9e65a04d76fdddf365
Signed-off-by: Jason Lowe-Power <ja...@lowepower.com>
---
M src/mem/cache/blk.hh
1 file changed, 2 insertions(+), 1 deletion(-)



diff --git a/src/mem/cache/blk.hh b/src/mem/cache/blk.hh
index 48deef5..8dbe44e 100644
--- a/src/mem/cache/blk.hh
+++ b/src/mem/cache/blk.hh
@@ -428,7 +428,8 @@
      * @param addr Block address.
      * @param is_secure Whether the block is in secure space or not.
      */
-    void insert(const Addr addr, const bool is_secure)
+    void insert(const Addr addr, const bool is_secure,
+ const int src_master_ID=0, const uint32_t task_ID=0) override
     {
         // Set block address
         _addr = addr;

--
To view, visit https://gem5-review.googlesource.com/11349
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: master
Gerrit-Change-Id: Ic096914497f3d17e88295c9e65a04d76fdddf365
Gerrit-Change-Number: 11349
Gerrit-PatchSet: 1
Gerrit-Owner: Jason Lowe-Power <ja...@lowepower.com>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list
gem5-dev@gem5.org
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to