[pypy-commit] pypy guard-compatible: typo

arigo pypy.commits at gmail.com
Mon May 23 06:47:52 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: guard-compatible
Changeset: r84621:a473089e0f3c
Date: 2016-05-23 12:48 +0200
http://bitbucket.org/pypy/pypy/changeset/a473089e0f3c/

Log:	typo

diff --git a/rpython/jit/backend/x86/assembler.py b/rpython/jit/backend/x86/assembler.py
--- a/rpython/jit/backend/x86/assembler.py
+++ b/rpython/jit/backend/x86/assembler.py
@@ -1460,7 +1460,7 @@
     def genop_load_from_gc_table(self, op, arglocs, resloc):
         index = op.getarg(0).getint()
         assert isinstance(resloc, RegLoc)
-        self._load_reg_from_gc_table(resloc.value, index)
+        self.load_reg_from_gc_table(resloc.value, index)
 
     def genop_int_force_ge_zero(self, op, arglocs, resloc):
         self.mc.TEST(arglocs[0], arglocs[0])


More information about the pypy-commit mailing list