summaryrefslogtreecommitdiff
path: root/src/cpu/o3/iew_impl.hh
diff options
context:
space:
mode:
authorAli Saidi <Ali.Saidi@ARM.com>2011-02-23 15:10:50 -0600
committerAli Saidi <Ali.Saidi@ARM.com>2011-02-23 15:10:50 -0600
commitf9d4d9df1b2250ed9b303e525e4de0149ac39cf2 (patch)
tree47691f636c768dc31dc739afbc66138e0483db7d /src/cpu/o3/iew_impl.hh
parent7ee2de31c4ed6d4eb0f57dcc798fd1126e9fa314 (diff)
downloadgem5-f9d4d9df1b2250ed9b303e525e4de0149ac39cf2.tar.xz
O3: When a prefetch causes a fault, don't record it in the inst
Diffstat (limited to 'src/cpu/o3/iew_impl.hh')
-rw-r--r--src/cpu/o3/iew_impl.hh2
1 files changed, 1 insertions, 1 deletions
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<Impl>::executeInsts()
}
if (inst->isDataPrefetch() || inst->isInstPrefetch()) {
- fault = NoFault;
+ inst->fault = NoFault;
}
} else if (inst->isStore()) {
fault = ldstQueue.executeStore(inst);