mem-cache: Fix non-bijective function in Skewed caches
[gem5.git] / src / mem / cache / blk.cc
index 233f380525f2aa42f0dcce43162b5a82c4295502..45bd9bfd43a2869d8efdc9874579b797c9c72879 100644 (file)
 #include "base/cprintf.hh"
 
 void
-CacheBlk::insert(const Addr tag, const State is_secure,
+CacheBlk::insert(const Addr tag, const bool is_secure,
                  const int src_master_ID, const uint32_t task_ID)
 {
-    // Touch block
-    isTouched = true;
-
     // Set block tag
     this->tag = tag;