From f9d4d9df1b2250ed9b303e525e4de0149ac39cf2 Mon Sep 17 00:00:00 2001 From: Ali Saidi Date: Wed, 23 Feb 2011 15:10:50 -0600 Subject: [PATCH] O3: When a prefetch causes a fault, don't record it in the inst --- src/cpu/o3/iew_impl.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.30.2