diff -r 9b5f44962195 -r 3ed17b1f1b80 src/python/m5/params.py --- a/src/python/m5/params.py Tue Jun 11 17:30:29 2013 +0100 +++ b/src/python/m5/params.py Tue Jun 11 17:37:49 2013 +0100 @@ -1244,14 +1244,6 @@ return Latency(self) raise AttributeError, "Frequency object has no attribute '%s'" % attr - def __mul__(self, other): - # Always treat the clock as a period when scaling - newobj = self.__class__(self) - newobj.value *= other - return newobj - - __rmul__ = __mul__ - def getValue(self): return self.period.getValue()