[pypy-commit] pypy default: Oups, my fault for leaving the option "--jit-backend=llvm" around

arigo noreply at buildbot.pypy.org
Sat Oct 27 09:44:37 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r58489:f0d036cd3b7b
Date: 2012-10-27 09:44 +0200
http://bitbucket.org/pypy/pypy/changeset/f0d036cd3b7b/

Log:	Oups, my fault for leaving the option "--jit-backend=llvm" around
	when the llvm jit backend was removed long ago.

diff --git a/pypy/config/translationoption.py b/pypy/config/translationoption.py
--- a/pypy/config/translationoption.py
+++ b/pypy/config/translationoption.py
@@ -118,7 +118,7 @@
                          ("translation.gcrootfinder", DEFL_ROOTFINDER_WITHJIT),
                          ("translation.list_comprehension_operations", True)]),
     ChoiceOption("jit_backend", "choose the backend for the JIT",
-                 ["auto", "x86", "x86-without-sse2", "llvm", 'arm'],
+                 ["auto", "x86", "x86-without-sse2", 'arm'],
                  default="auto", cmdline="--jit-backend"),
     ChoiceOption("jit_profiler", "integrate profiler support into the JIT",
                  ["off", "oprofile"],


More information about the pypy-commit mailing list