From: Ali Saidi Date: Wed, 23 Feb 2011 21:10:50 +0000 (-0600) Subject: O3: When a prefetch causes a fault, don't record it in the inst X-Git-Tag: stable_2012_02_02~533 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f9d4d9df1b2250ed9b303e525e4de0149ac39cf2;p=gem5.git O3: When a prefetch causes a fault, don't record it in the inst --- diff --git a/src/cpu/o3/iew_impl.hh b/src/cpu/o3/iew_impl.hh index 03f73c798..dff287ff5 100644 --- a/src/cpu/o3/iew_impl.hh +++ b/src/cpu/o3/iew_impl.hh @@ -1253,7 +1253,7 @@ DefaultIEW::executeInsts() } if (inst->isDataPrefetch() || inst->isInstPrefetch()) { - fault = NoFault; + inst->fault = NoFault; } } else if (inst->isStore()) { fault = ldstQueue.executeStore(inst);