diff options
Diffstat (limited to 'src/mem/cache/prefetch')
-rw-r--r-- | src/mem/cache/prefetch/queued.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mem/cache/prefetch/queued.hh b/src/mem/cache/prefetch/queued.hh index ae4c5e4ad..adcd255ba 100644 --- a/src/mem/cache/prefetch/queued.hh +++ b/src/mem/cache/prefetch/queued.hh @@ -80,7 +80,8 @@ class QueuedPrefetcher : public BasePrefetcher */ DeferredPacket(QueuedPrefetcher *o, PrefetchInfo const &pfi, Tick t, int32_t prio) : owner(o), pfInfo(pfi), tick(t), pkt(nullptr), - priority(prio), translationRequest() { + priority(prio), translationRequest(), tc(nullptr), + ongoingTranslation(false) { } bool operator>(const DeferredPacket& that) const |