[pypy-commit] pypy default: Oups.

arigo noreply at buildbot.pypy.org
Wed Nov 30 02:46:06 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r49994:e99702a71e7e
Date: 2011-11-30 02:45 +0100
http://bitbucket.org/pypy/pypy/changeset/e99702a71e7e/

Log:	Oups.

diff --git a/pypy/jit/codewriter/effectinfo.py b/pypy/jit/codewriter/effectinfo.py
--- a/pypy/jit/codewriter/effectinfo.py
+++ b/pypy/jit/codewriter/effectinfo.py
@@ -251,9 +251,12 @@
                                                                       seen)
 
     def analyze_external_call(self, op, seen=None):
-        funcobj = op.args[0].value._obj
-        if funcobj.random_effects_on_gcobjs:
-            return True
+        try:
+            funcobj = op.args[0].value._obj
+            if funcobj.random_effects_on_gcobjs:
+                return True
+        except lltype.DelayedPointer:
+            pass
         return super(RandomEffectsAnalyzer, self).analyze_external_call(op,
                                                                         seen)
 


More information about the pypy-commit mailing list