From: Andreas Hansson Date: Tue, 20 Jan 2015 13:11:58 +0000 (-0500) Subject: cpu: Fix retry bug in MinorCPU LSQ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=da0c770943a26cd258fcd9bf608e1c78ff8e6be5;p=gem5.git cpu: Fix retry bug in MinorCPU LSQ --- diff --git a/src/cpu/minor/lsq.cc b/src/cpu/minor/lsq.cc index 49daa3518..28c3546b6 100644 --- a/src/cpu/minor/lsq.cc +++ b/src/cpu/minor/lsq.cc @@ -1277,9 +1277,9 @@ LSQ::recvRetry() assert(false); break; } - } - retryRequest = NULL; + retryRequest = NULL; + } } LSQ::LSQ(std::string name_, std::string dcache_port_name_,