[pypy-commit] pypy stmgc-c7: fix

arigo noreply at buildbot.pypy.org
Sun Mar 23 16:22:47 CET 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: stmgc-c7
Changeset: r70205:a37be1ce64d8
Date: 2014-03-23 16:22 +0100
http://bitbucket.org/pypy/pypy/changeset/a37be1ce64d8/

Log:	fix

diff --git a/rpython/jit/backend/x86/regloc.py b/rpython/jit/backend/x86/regloc.py
--- a/rpython/jit/backend/x86/regloc.py
+++ b/rpython/jit/backend/x86/regloc.py
@@ -299,6 +299,9 @@
     def __init__(self, address):
         self.value = address
 
+    def value_j(self):
+        return (rx86.SEGMENT_NO, self.value)
+
     def get_width(self):
         return 8
 


More information about the pypy-commit mailing list