Author: Richard Plangger <planri...@gmail.com> Branch: ppc-vsx-support Changeset: r87065:eebdc539c56a Date: 2016-09-13 10:45 +0200 http://bitbucket.org/pypy/pypy/changeset/eebdc539c56a/
Log: translation issue, no common base class diff --git a/rpython/jit/metainterp/optimizeopt/schedule.py b/rpython/jit/metainterp/optimizeopt/schedule.py --- a/rpython/jit/metainterp/optimizeopt/schedule.py +++ b/rpython/jit/metainterp/optimizeopt/schedule.py @@ -195,7 +195,8 @@ op = node.getoperation() self.resolve_delayed({}, delayed, op) for node in delayed: - if node in self.seen: + op = node.getoperation() + if op in self.seen: continue if node is not None: provides = node.provides() _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit