From 60579e8d74cecea5737a4502599ccf77e9e6a35e Mon Sep 17 00:00:00 2001 From: Ali Saidi Date: Sun, 10 Jul 2011 12:56:08 -0500 Subject: O3: Make sure fetch doesn't go off into the weeds during speculation. --- src/python/m5/params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/python') diff --git a/src/python/m5/params.py b/src/python/m5/params.py index 4dd879783..1b5fbf226 100644 --- a/src/python/m5/params.py +++ b/src/python/m5/params.py @@ -184,7 +184,7 @@ class VectorParamValue(list): return [ v.getValue() for v in self ] def unproxy(self, base): - if len(self) == 1 and isinstance(self[0], AllProxy): + if len(self) == 1 and isinstance(self[0], proxy.AllProxy): return self[0].unproxy(base) else: return [v.unproxy(base) for v in self] -- cgit v1.2.3