diff options
Diffstat (limited to 'src/python/m5/SimObject.py')
-rw-r--r-- | src/python/m5/SimObject.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/python/m5/SimObject.py b/src/python/m5/SimObject.py index 0f742a3a2..ae6b2035e 100644 --- a/src/python/m5/SimObject.py +++ b/src/python/m5/SimObject.py @@ -597,7 +597,6 @@ class SimObject(object): void loadState(Checkpoint *cp); void initState(); void regStats(); - void regFormulas(); void resetStats(); void startup(); @@ -707,7 +706,7 @@ class SimObject(object): # 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) |