summaryrefslogtreecommitdiff
path: root/src/mem/cache/prefetch/SConscript
diff options
context:
space:
mode:
authorMitch Hayenga <mitch.hayenga@arm.com>2014-09-20 17:17:44 -0400
committerMitch Hayenga <mitch.hayenga@arm.com>2014-09-20 17:17:44 -0400
commit3e5bf0c922a88736915f0ea49cf0597d79b8ada1 (patch)
tree720ea0a19774124c59c82b8a391acd9290611b4d /src/mem/cache/prefetch/SConscript
parentca3513d63038e562782cd193c00c3892a276bb5d (diff)
downloadgem5-3e5bf0c922a88736915f0ea49cf0597d79b8ada1.tar.xz
mem: Remove the GHB prefetcher from the source tree
There are two primary issues with this code which make it deserving of deletion. 1) GHB is a way to structure a prefetcher, not a definitive type of prefetcher 2) This prefetcher isn't even structured like a GHB prefetcher. It's basically a worse version of the stride prefetcher. It primarily serves to confuse new gem5 users and most functionality is already present in the stride prefetcher.
Diffstat (limited to 'src/mem/cache/prefetch/SConscript')
-rw-r--r--src/mem/cache/prefetch/SConscript1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mem/cache/prefetch/SConscript b/src/mem/cache/prefetch/SConscript
index 61291f715..cbb6c7a7a 100644
--- a/src/mem/cache/prefetch/SConscript
+++ b/src/mem/cache/prefetch/SConscript
@@ -33,7 +33,6 @@ Import('*')
SimObject('Prefetcher.py')
Source('base.cc')
-Source('ghb.cc')
Source('stride.cc')
Source('tagged.cc')