[pypy-commit] pypy default: Fix.

arigo noreply at buildbot.pypy.org
Wed Mar 7 18:08:47 CET 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r53257:908d77ee8a29
Date: 2012-03-05 00:08 +0100
http://bitbucket.org/pypy/pypy/changeset/908d77ee8a29/

Log:	Fix.

diff --git a/pypy/jit/backend/x86/codebuf.py b/pypy/jit/backend/x86/codebuf.py
--- a/pypy/jit/backend/x86/codebuf.py
+++ b/pypy/jit/backend/x86/codebuf.py
@@ -19,8 +19,8 @@
 
 
 class MachineCodeBlockWrapper(BlockBuilderMixin,
-                              codebuilder_cls,
-                              LocationCodeBuilder):
+                              LocationCodeBuilder,
+                              codebuilder_cls):
     def __init__(self):
         self.init_block_builder()
         # a list of relative positions; for each position p, the bytes


More information about the pypy-commit mailing list