[pypy-commit] pypy default: remove unused dict

arigo pypy.commits at gmail.com
Fri Apr 1 03:46:33 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r83480:ce466388b1be
Date: 2016-04-01 09:45 +0200
http://bitbucket.org/pypy/pypy/changeset/ce466388b1be/

Log:	remove unused dict

diff --git a/rpython/jit/metainterp/opencoder.py b/rpython/jit/metainterp/opencoder.py
--- a/rpython/jit/metainterp/opencoder.py
+++ b/rpython/jit/metainterp/opencoder.py
@@ -279,7 +279,6 @@
         self._bigints = []
         self._bigints_dict = {}
         self._floats = []
-        self._floats_dict = {}
         self._snapshots = []
         for i, inparg in enumerate(inputargs):
             inparg.set_position(i)
@@ -305,7 +304,6 @@
 
         self._bigints_dict = {}
         self._refs_dict = llhelper.new_ref_dict_3()
-        self._floats_dict = {}
         debug_start("jit-trace-done")
         debug_print("trace length: " + str(self._pos))
         debug_print(" total snapshots: " + str(self._total_snapshots))


More information about the pypy-commit mailing list