[pypy-svn] pypy jit-longlong: Bah. Remove pdb.set_trace().

arigo commits-noreply at bitbucket.org
Sun Jan 9 14:01:10 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: jit-longlong
Changeset: r40516:aa9242d729e1
Date: 2011-01-09 14:00 +0100
http://bitbucket.org/pypy/pypy/changeset/aa9242d729e1/

Log:	Bah. Remove pdb.set_trace().

diff --git a/pypy/jit/backend/x86/regalloc.py b/pypy/jit/backend/x86/regalloc.py
--- a/pypy/jit/backend/x86/regalloc.py
+++ b/pypy/jit/backend/x86/regalloc.py
@@ -652,7 +652,6 @@
         if isinstance(box, ConstInt):
             from pypy.rlib.longlong2float import longlong2float
             from pypy.rlib.rarithmetic import r_longlong
-            import pdb; pdb.set_trace()
             value = r_longlong(box.value)
             c = ConstFloat(longlong2float(value))
             loc1 = self.xrm.convert_to_imm(c)


More information about the Pypy-commit mailing list