[pypy-svn] r73796 - pypy/trunk/pypy/jit/tl/tinyframe/examples

fijal at codespeak.net fijal at codespeak.net
Thu Apr 15 22:29:55 CEST 2010


Author: fijal
Date: Thu Apr 15 22:29:54 2010
New Revision: 73796

Added:
   pypy/trunk/pypy/jit/tl/tinyframe/examples/loop.tf
Log:
the simplest loop example


Added: pypy/trunk/pypy/jit/tl/tinyframe/examples/loop.tf
==============================================================================
--- (empty file)
+++ pypy/trunk/pypy/jit/tl/tinyframe/examples/loop.tf	Thu Apr 15 22:29:54 2010
@@ -0,0 +1,7 @@
+main:
+LOAD 0 => r1
+LOAD 1 => r2
+ at add
+ADD r2 r1 => r1
+JUMP_IF_ABOVE r0 r1 @add
+RETURN r1



More information about the Pypy-commit mailing list