[pypy-svn] r37525 - pypy/dist/pypy/jit/codegen/demo

mwh at codespeak.net mwh at codespeak.net
Mon Jan 29 13:06:57 CET 2007


Author: mwh
Date: Mon Jan 29 13:06:56 2007
New Revision: 37525

Modified:
   pypy/dist/pypy/jit/codegen/demo/support.py
Log:
formatting nicety


Modified: pypy/dist/pypy/jit/codegen/demo/support.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/demo/support.py	(original)
+++ pypy/dist/pypy/jit/codegen/demo/support.py	Mon Jan 29 13:06:56 2007
@@ -83,7 +83,7 @@
     F1 = lltype.FuncType([lltype.Signed] * nb_args, lltype.Signed)
     fp = RGenOp.get_python_callable(lltype.Ptr(F1), gv_entrypoint)
     res = fp(*args)
-    print 'i386   ===>', res
+    print '%-6s ===>'%demo_conftest.option.backend, res
     print
     if res != expected:
         raise AssertionError(



More information about the Pypy-commit mailing list