[pypy-commit] pypy ec-threadlocal: fix test_lloperation

arigo noreply at buildbot.pypy.org
Mon Jun 23 19:30:34 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: ec-threadlocal
Changeset: r72167:a6d80238a8aa
Date: 2014-06-23 19:29 +0200
http://bitbucket.org/pypy/pypy/changeset/a6d80238a8aa/

Log:	fix test_lloperation

diff --git a/rpython/rtyper/llinterp.py b/rpython/rtyper/llinterp.py
--- a/rpython/rtyper/llinterp.py
+++ b/rpython/rtyper/llinterp.py
@@ -930,6 +930,9 @@
         d = self.llinterpreter.tlrefsdict
         return d[key._obj]
 
+    def op_threadlocalref_getaddr(self, key):
+        raise NotImplementedError("threadlocalref_getaddr")
+
     # __________________________________________________________
     # operations on addresses
 


More information about the pypy-commit mailing list