[pypy-svn] r65014 - pypy/branch/pyjitpl5/pypy/jit/metainterp

benjamin at codespeak.net benjamin at codespeak.net
Mon May 4 04:32:25 CEST 2009


Author: benjamin
Date: Mon May  4 04:32:22 2009
New Revision: 65014

Modified:
   pypy/branch/pyjitpl5/pypy/jit/metainterp/pyjitpl.py
Log:
this doesn't need to be within the try block

Modified: pypy/branch/pyjitpl5/pypy/jit/metainterp/pyjitpl.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/metainterp/pyjitpl.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/metainterp/pyjitpl.py	Mon May  4 04:32:22 2009
@@ -1163,8 +1163,8 @@
     def compile_bridge(self, live_arg_boxes):
         num_green_args = self.staticdata.num_green_args
         greenkey = live_arg_boxes[:num_green_args]
+        glob = self.staticdata.globaldata
         try:
-            glob = self.staticdata.globaldata
             old_loops = glob.compiled_merge_points[greenkey]
         except KeyError:
             return



More information about the Pypy-commit mailing list