ruby: cache: remove not required variable m_cache_name
authorNilay Vaish <nilay@cs.wisc.edu>
Fri, 21 Feb 2014 14:02:02 +0000 (08:02 -0600)
committerNilay Vaish <nilay@cs.wisc.edu>
Fri, 21 Feb 2014 14:02:02 +0000 (08:02 -0600)
src/mem/ruby/system/CacheMemory.cc
src/mem/ruby/system/CacheMemory.hh

index f57c4c7adcdc804a12ae72f3de789135622a4838..2ea6942fff433cfad0f4514a56b9426f2a718d2e 100644 (file)
@@ -364,7 +364,7 @@ CacheMemory::recordCacheContents(int cntrl, CacheRecorder* tr) const
 void
 CacheMemory::print(ostream& out) const
 {
-    out << "Cache dump: " << m_cache_name << endl;
+    out << "Cache dump: " << name() << endl;
     for (int i = 0; i < m_cache_num_sets; i++) {
         for (int j = 0; j < m_cache_assoc; j++) {
             if (m_cache[i][j] != NULL) {
index db9e00e21acef93e3f8f41fe1a92d0c37ce9dd5a..aa619e59d1d7638f9514b0a4df9a03242e7b97d8 100644 (file)
@@ -144,7 +144,6 @@ class CacheMemory : public SimObject
     CacheMemory& operator=(const CacheMemory& obj);
 
   private:
-    const std::string m_cache_name;
     Cycles m_latency;
 
     // Data Members (m_prefix)