O3: Make sure fetch doesn't go off into the weeds during speculation.

This commit is contained in:
Ali Saidi
2011-07-10 12:56:08 -05:00
parent 9751a1d3e7
commit 60579e8d74
8 changed files with 51 additions and 10 deletions

View File

@@ -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]