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

cfbolz at codespeak.net cfbolz at codespeak.net
Wed Oct 13 14:49:57 CEST 2010


Author: cfbolz
Date: Wed Oct 13 14:49:55 2010
New Revision: 77869

Modified:
   pypy/extradoc/talk/pepm2011/paper.tex
Log:
(antocuni, cfbolz) a minimal fix for one of antos remarks that I just killed


Modified: pypy/extradoc/talk/pepm2011/paper.tex
==============================================================================
--- pypy/extradoc/talk/pepm2011/paper.tex	(original)
+++ pypy/extradoc/talk/pepm2011/paper.tex	Wed Oct 13 14:49:55 2010
@@ -237,7 +237,7 @@
 some light-weight profiling at the same time. This profiling is used to identify
 the hot loops of the program. If a hot loop is found in that way, the
 interpreter enters a special \emph{tracing mode}. In this tracing mode, the
-interpreter records all operations that it is executing while running one
+interpreter tries to record all operations that it is executing while running one
 iteration of the hot loop. This history of executed operations of one loop is
 called a \emph{trace}. Because the trace corresponds to one iteration of a loop,
 it always ends with a jump to its own beginning. The trace also contains all



More information about the Pypy-commit mailing list