diff options
-rw-r--r-- | python/m5/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/m5/config.py b/python/m5/config.py index a954012ea..1e25e0d09 100644 --- a/python/m5/config.py +++ b/python/m5/config.py @@ -1240,7 +1240,7 @@ class RootClock(ParamValue): # A generic frequency and/or Latency value. Value is stored as a latency, # but to avoid ambiguity this object does not support numeric ops (* or /). # An explicit conversion to a Latency or Frequency must be made first. -class Clock(NumericParamValue): +class Clock(ParamValue): def __init__(self, value): self.value = getLatency(value) |