diff -r bb0efca1fd06 -r 17a82c487063 src/python/m5/SimObject.py --- a/src/python/m5/SimObject.py Thu Aug 16 16:29:12 2012 -0400 +++ b/src/python/m5/SimObject.py Thu Aug 16 16:29:13 2012 -0400 @@ -597,7 +597,6 @@ void loadState(Checkpoint *cp); void initState(); void regStats(); - void regFormulas(); void resetStats(); void startup(); @@ -707,7 +706,7 @@ # If the attribute exists on the C++ object, transparently # forward the reference there. This is typically used for # SWIG-wrapped methods such as init(), regStats(), - # regFormulas(), resetStats(), startup(), drain(), and + # resetStats(), startup(), drain(), and # resume(). if self._ccObject and hasattr(self._ccObject, attr): return getattr(self._ccObject, attr) diff -r bb0efca1fd06 -r 17a82c487063 src/python/m5/simulate.py --- a/src/python/m5/simulate.py Thu Aug 16 16:29:12 2012 -0400 +++ b/src/python/m5/simulate.py Thu Aug 16 16:29:13 2012 -0400 @@ -111,7 +111,6 @@ # Do a third pass to initialize statistics for obj in root.descendants(): obj.regStats() - for obj in root.descendants(): obj.regFormulas() # We're done registering statistics. Enable the stats package now. stats.enable() diff -r bb0efca1fd06 -r 17a82c487063 src/sim/sim_object.hh --- a/src/sim/sim_object.hh Thu Aug 16 16:29:12 2012 -0400 +++ b/src/sim/sim_object.hh Thu Aug 16 16:29:13 2012 -0400 @@ -130,7 +130,6 @@ // register statistics for this object virtual void regStats(); - virtual void regFormulas(); virtual void resetStats(); // register any smartvalues for this object diff -r bb0efca1fd06 -r 17a82c487063 src/sim/sim_object.cc --- a/src/sim/sim_object.cc Thu Aug 16 16:29:12 2012 -0400 +++ b/src/sim/sim_object.cc Thu Aug 16 16:29:13 2012 -0400 @@ -106,11 +106,6 @@ } void -SimObject::regFormulas() -{ -} - -void SimObject::resetStats() { }