From 2f397f314b6724ad82c5cc40bb30aa3148361b09 Mon Sep 17 00:00:00 2001 From: Andreas Sandberg Date: Fri, 7 Sep 2012 14:20:53 -0500 Subject: sim: Remove the unused SimObject::regFormulas method Simulation objects normally register derived statistics, presumably what regFormulas originally was meant for, in regStats(). This patch removes regRegformulas since there is no need to have a separate method call to register formulas. --- src/python/m5/simulate.py | 1 - 1 file changed, 1 deletion(-) (limited to 'src/python/m5/simulate.py') diff --git a/src/python/m5/simulate.py b/src/python/m5/simulate.py index 99e3ec989..9cb647a6b 100644 --- a/src/python/m5/simulate.py +++ b/src/python/m5/simulate.py @@ -110,7 +110,6 @@ def instantiate(ckpt_dir=None): # 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() -- cgit v1.2.3