diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/python/m5/params.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/python/m5/params.py b/src/python/m5/params.py index 8b0a14af3..02f5e51b5 100644 --- a/src/python/m5/params.py +++ b/src/python/m5/params.py @@ -2115,11 +2115,6 @@ class ResponsePort(Port): # VectorPort description object. Like Port, but represents a vector # of connections (e.g., as on a XBar). class VectorPort(Port): - # VectorPort("role", "description") - def __init__(self, role, desc, is_source=False): - super(VectorPort, self).__init__(role, desc, is_source) - self.isVec = True - def makeRef(self, simobj): return VectorPortRef(simobj, self.name, self.role, self.is_source) |