diff --git a/src/mem/cache/prefetch/signature_path_v2.cc b/src/mem/cache/prefetch/signature_path_v2.cc index d021170742..34209e6f00 100644 --- a/src/mem/cache/prefetch/signature_path_v2.cc +++ b/src/mem/cache/prefetch/signature_path_v2.cc @@ -124,8 +124,9 @@ SignaturePathV2::handlePageCrossingLookahead(signature_t signature, // of them are unique, there are never "hits" in the GHR GlobalHistoryEntry *gh_entry = globalHistoryRegister.findVictim(0); assert(gh_entry != nullptr); + // Any address value works, as it is never used constexpr bool is_secure = false; - globalHistoryRegister.insertEntry(0, is_secure, gh_entry); // false, + globalHistoryRegister.insertEntry(0, is_secure, gh_entry); gh_entry->signature = signature; gh_entry->lastBlock = last_offset;