diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2013-09-06 16:21:28 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2013-09-06 16:21:28 -0500 |
commit | c0a8ad0a35cc273f494c9460277dcb13268baccc (patch) | |
tree | e9b26b72372b96d8b6dd5e92829f07ab11383b95 /src/mem/ruby/system/System.cc | |
parent | 53cf77cf18fa44ed60ad586fb9add661853b205a (diff) | |
download | gem5-c0a8ad0a35cc273f494c9460277dcb13268baccc.tar.xz |
ruby: converts sparse memory stats to gem5 style
Diffstat (limited to 'src/mem/ruby/system/System.cc')
-rw-r--r-- | src/mem/ruby/system/System.cc | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mem/ruby/system/System.cc b/src/mem/ruby/system/System.cc index 357511127..4fb6bbde1 100644 --- a/src/mem/ruby/system/System.cc +++ b/src/mem/ruby/system/System.cc @@ -145,15 +145,6 @@ RubySystem::printStats(ostream& out) m_profiler_ptr->printStats(out); m_network_ptr->printStats(out); - - for (uint32_t i = 0;i < g_abs_controls.size(); ++i) { - for (map<uint32_t, AbstractController *>::iterator it = - g_abs_controls[i].begin(); - it != g_abs_controls[i].end(); ++it) { - - ((*it).second)->printStats(out); - } - } } void |