diff options
author | Ali Saidi <Ali.Saidi@ARM.com> | 2011-02-23 15:10:50 -0600 |
---|---|---|
committer | Ali Saidi <Ali.Saidi@ARM.com> | 2011-02-23 15:10:50 -0600 |
commit | f9d4d9df1b2250ed9b303e525e4de0149ac39cf2 (patch) | |
tree | 47691f636c768dc31dc739afbc66138e0483db7d | |
parent | 7ee2de31c4ed6d4eb0f57dcc798fd1126e9fa314 (diff) | |
download | gem5-f9d4d9df1b2250ed9b303e525e4de0149ac39cf2.tar.xz |
O3: When a prefetch causes a fault, don't record it in the inst
-rw-r--r-- | src/cpu/o3/iew_impl.hh | 2 |
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); |