[llvm] r227019 - Update references to lines of code count.

Charlie Turner charlesturner7c5 at gmail.com
Sat Jan 24 13:51:17 PST 2015


Author: cturner
Date: Sat Jan 24 15:51:17 2015
New Revision: 227019

URL: http://llvm.org/viewvc/llvm-project?rev=227019&view=rev
Log:
Update references to lines of code count.

The number of lines of code in Kaleidoscope has risen from the
previously reported 700 to 986 according to the cloc tool. This tools
was run on the toy.cpp file from Chapter 8.

Modified:
    llvm/trunk/docs/tutorial/LangImpl1.rst
    llvm/trunk/docs/tutorial/LangImpl9.rst

Modified: llvm/trunk/docs/tutorial/LangImpl1.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl1.rst?rev=227019&r1=227018&r2=227019&view=diff
==============================================================================
--- llvm/trunk/docs/tutorial/LangImpl1.rst (original)
+++ llvm/trunk/docs/tutorial/LangImpl1.rst Sat Jan 24 15:51:17 2015
@@ -80,7 +80,7 @@ in the various pieces. The structure of
    collection support, exceptions, debugging, support for "spaghetti
    stacks", and a bunch of other tips and tricks.
 
-By the end of the tutorial, we'll have written a bit less than 700 lines
+By the end of the tutorial, we'll have written a bit less than 1000 lines
 of non-comment, non-blank, lines of code. With this small amount of
 code, we'll have built up a very reasonable compiler for a non-trivial
 language including a hand-written lexer, parser, AST, as well as code

Modified: llvm/trunk/docs/tutorial/LangImpl9.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl9.rst?rev=227019&r1=227018&r2=227019&view=diff
==============================================================================
--- llvm/trunk/docs/tutorial/LangImpl9.rst (original)
+++ llvm/trunk/docs/tutorial/LangImpl9.rst Sat Jan 24 15:51:17 2015
@@ -15,7 +15,7 @@ being a semi-interesting (but probably s
 
 It is interesting to see how far we've come, and how little code it has
 taken. We built the entire lexer, parser, AST, code generator, and an
-interactive run-loop (with a JIT!) by-hand in under 700 lines of
+interactive run-loop (with a JIT!) by-hand in under 1000 lines of
 (non-comment/non-blank) code.
 
 Our little language supports a couple of interesting features: it





More information about the llvm-commits mailing list