Author: Armin Rigo <ar...@tunes.org> Branch: remove-globals-in-jit Changeset: r59740:ea28111fbb8a Date: 2013-01-05 18:22 +0100 http://bitbucket.org/pypy/pypy/changeset/ea28111fbb8a/
Log: LLtypeCPU => LLGraphCPU diff --git a/pypy/jit/tl/jittest.py b/pypy/jit/tl/jittest.py --- a/pypy/jit/tl/jittest.py +++ b/pypy/jit/tl/jittest.py @@ -26,8 +26,8 @@ get_policy = driver.extra['jitpolicy'] jitpolicy = get_policy(driver) - from pypy.jit.backend.llgraph.runner import LLtypeCPU - apply_jit(jitpolicy, interp, graph, LLtypeCPU) + from pypy.jit.backend.llgraph.runner import LLGraphCPU + apply_jit(jitpolicy, interp, graph, LLGraphCPU) def apply_jit(policy, interp, graph, CPUClass): diff --git a/pypy/jit/tl/pypyjit_child.py b/pypy/jit/tl/pypyjit_child.py --- a/pypy/jit/tl/pypyjit_child.py +++ b/pypy/jit/tl/pypyjit_child.py @@ -14,9 +14,9 @@ return lltype.nullptr(T) interp.heap.malloc_nonmovable = returns_null # XXX - from pypy.jit.backend.llgraph.runner import LLtypeCPU - #LLtypeCPU.supports_floats = False # for now - apply_jit(interp, graph, LLtypeCPU) + from pypy.jit.backend.llgraph.runner import LLGraphCPU + #LLGraphCPU.supports_floats = False # for now + apply_jit(interp, graph, LLGraphCPU) def run_child_ootype(glob, loc): diff --git a/pypy/jit/tl/spli/test/test_jit.py b/pypy/jit/tl/spli/test/test_jit.py --- a/pypy/jit/tl/spli/test/test_jit.py +++ b/pypy/jit/tl/spli/test/test_jit.py @@ -8,7 +8,7 @@ class TestSPLIJit(JitMixin): type_system = 'lltype' - CPUClass = runner.LLtypeCPU + CPUClass = runner.LLGraphCPU def interpret(self, f, args): coderepr = serializer.serialize(f.func_code) _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit