Author: Maciej Fijalkowski <fij...@gmail.com>
Branch: extradoc
Changeset: r4985:fbfe3d8fe09a
Date: 2013-07-12 11:06 +0200
http://bitbucket.org/pypy/extradoc/changeset/fbfe3d8fe09a/

Log:    merge

diff --git a/planning/jit.txt b/planning/jit.txt
--- a/planning/jit.txt
+++ b/planning/jit.txt
@@ -83,6 +83,15 @@
 - p0 = call_pure(ConstClass(something), ConstPtr(2))
   guard_exception(SomeException)
 
+- f0 = convert_longlong_bytes_to_float(i0)
+  setarrayitem_gc(p0, 0, f0, descr=<ArrayF 8>)
+
+  This should be folded into:
+
+  setarrayitem_gc(p0, 0, i0, descr=<ArrayS 8>)
+
+  (This applies to the read direction as well)
+
 PYTHON EXAMPLES
 ---------------
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to