[pypy-svn] r68106 - pypy/branch/floats-via-sse2/pypy/jit/metainterp

fijal at codespeak.net fijal at codespeak.net
Thu Oct 1 16:00:45 CEST 2009


Author: fijal
Date: Thu Oct  1 16:00:44 2009
New Revision: 68106

Modified:
   pypy/branch/floats-via-sse2/pypy/jit/metainterp/history.py
Log:
improve printing


Modified: pypy/branch/floats-via-sse2/pypy/jit/metainterp/history.py
==============================================================================
--- pypy/branch/floats-via-sse2/pypy/jit/metainterp/history.py	(original)
+++ pypy/branch/floats-via-sse2/pypy/jit/metainterp/history.py	Thu Oct  1 16:00:44 2009
@@ -466,6 +466,8 @@
             try:
                 if self.type == INT:
                     t = 'i'
+                elif self.type == FLOAT:
+                    t = 'f'
                 else:
                     t = 'p'
             except AttributeError:



More information about the Pypy-commit mailing list