Merge ktlim@zamp:./local/clean/o3-merge/m5
[gem5.git] / src / cpu / o3 / lsq_impl.hh
index 2bbab71f050a685ffa65530cecc7810f8107fd94..a1ac5adb8d545cafd98cf61360f2231758b5d9ad 100644 (file)
@@ -165,6 +165,16 @@ LSQ<Impl>::regStats()
     }
 }
 
+template<class Impl>
+void
+LSQ<Impl>::regStats()
+{
+    //Initialize LSQs
+    for (int tid=0; tid < numThreads; tid++) {
+        thread[tid].regStats();
+    }
+}
+
 template<class Impl>
 void
 LSQ<Impl>::setActiveThreads(std::list<unsigned> *at_ptr)