[pypy-svn] r78055 - pypy/extradoc/talk/pepm2011

cfbolz at codespeak.net cfbolz at codespeak.net
Mon Oct 18 18:03:57 CEST 2010


Author: cfbolz
Date: Mon Oct 18 18:03:56 2010
New Revision: 78055

Modified:
   pypy/extradoc/talk/pepm2011/paper.tex
Log:
gaaaah


Modified: pypy/extradoc/talk/pepm2011/paper.tex
==============================================================================
--- pypy/extradoc/talk/pepm2011/paper.tex	(original)
+++ pypy/extradoc/talk/pepm2011/paper.tex	Mon Oct 18 18:03:56 2010
@@ -667,23 +667,23 @@
 \begin{lstlisting}[mathescape]
 # arguments to the trace: $p_{0}$, $p_{1}$
 guard_class($p_1$, BoxedInteger)
-$i_2$ = getfield($p_1$, intval)
+$i_2$ = get($p_1$, intval)
 guard_class($p_0$, BoxedInteger)
-$i_3$ = getfield($p_0$, intval)
+$i_3$ = get($p_0$, intval)
 $i_4$ = int_add($i_2$, $i_3$)
 $i_9$ = int_add($i_4$, -100)
 
 guard_class($p_0$, BoxedInteger)
-$i_{12}$ = getfield($p_0$, intval)
+$i_{12}$ = get($p_0$, intval)
 $i_{14}$ = int_add($i_{12}$, -1)
 
 $i_{17}$ = int_gt($i_{14}$, 0)
 guard_true($i_{17}$)
 
 $p_{15}$ = new(BoxedInteger)
-setfield($p_{15}$, intval, $i_{14}$)
+set($p_{15}$, intval, $i_{14}$)
 $p_{10}$ = new(BoxedInteger)
-setfield($p_{10}$, intval, $i_9$)
+set($p_{10}$, intval, $i_9$)
 
 jump($p_{15}$, $p_{10}$)
 \end{lstlisting}



More information about the Pypy-commit mailing list