diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2006-10-18 08:16:22 -0700 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2006-10-18 08:16:22 -0700 |
commit | 6cd187e1f066b084740b4b202f1de644ba06f299 (patch) | |
tree | 32db5b9458ccf1d39669b94693baff56afbb47d2 /src/python | |
parent | 0128b73d0588ecdf66fcb482fddad2853216edce (diff) | |
download | gem5-6cd187e1f066b084740b4b202f1de644ba06f299.tar.xz |
Get rid of obsolete in-cache copy support.
--HG--
extra : convert_revision : a701ed9d078c67718a33f4284c0403a8aaac7b25
Diffstat (limited to 'src/python')
-rw-r--r-- | src/python/m5/objects/BaseCache.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/python/m5/objects/BaseCache.py b/src/python/m5/objects/BaseCache.py index db58a177f..773a11bea 100644 --- a/src/python/m5/objects/BaseCache.py +++ b/src/python/m5/objects/BaseCache.py @@ -14,7 +14,6 @@ class BaseCache(MemObject): "This cache connects to a compressed memory") compression_latency = Param.Latency('0ns', "Latency in cycles of compression algorithm") - do_copy = Param.Bool(False, "perform fast copies in the cache") hash_delay = Param.Int(1, "time in cycles of hash access") lifo = Param.Bool(False, "whether this NIC partition should use LIFO repl. policy") |