diff options
Diffstat (limited to 'src/mem/cache/SConscript')
-rw-r--r-- | src/mem/cache/SConscript | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mem/cache/SConscript b/src/mem/cache/SConscript index 1b2638e83..3fb1601de 100644 --- a/src/mem/cache/SConscript +++ b/src/mem/cache/SConscript @@ -42,6 +42,7 @@ Source('write_queue.cc') Source('write_queue_entry.cc') DebugFlag('Cache') +DebugFlag('CacheComp') DebugFlag('CachePort') DebugFlag('CacheRepl') DebugFlag('CacheTags') @@ -51,6 +52,6 @@ DebugFlag('HWPrefetch') # CacheTags is so outrageously verbose, printing the cache's entire tag # array on each timing access, that you should probably have to ask for # it explicitly even above and beyond CacheAll. -CompoundFlag('CacheAll', ['Cache', 'CachePort', 'CacheRepl', 'CacheVerbose', - 'HWPrefetch']) +CompoundFlag('CacheAll', ['Cache', 'CacheComp', 'CachePort', 'CacheRepl', + 'CacheVerbose', 'HWPrefetch']) |