summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/python/m5/params.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/python/m5/params.py b/src/python/m5/params.py
index fdd22dac0..995c66de5 100644
--- a/src/python/m5/params.py
+++ b/src/python/m5/params.py
@@ -1244,14 +1244,6 @@ class Clock(ParamValue):
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()