Update references to lines of code count.
authorCharlie Turner <charlesturner7c5@gmail.com>
Sat, 24 Jan 2015 21:51:17 +0000 (21:51 +0000)
committerCharlie Turner <charlesturner7c5@gmail.com>
Sat, 24 Jan 2015 21:51:17 +0000 (21:51 +0000)
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.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227019 91177308-0d34-0410-b5e6-96231b3b80d8

docs/tutorial/LangImpl1.rst
docs/tutorial/LangImpl9.rst

index a2c5eeebf474614c7de07607bd3f7f920f53ee45..3333ce8706f71f9b223e471603a3d00a87395559 100644 (file)
@@ -80,7 +80,7 @@ in the various pieces. The structure of the tutorial is:
    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
index 6f694931ef862ab47b3334c664da3f56488cd9d1..c5140a12e5c7eb47058ae0a30d7eafa82931074b 100644 (file)
@@ -15,7 +15,7 @@ being a semi-interesting (but probably still useless) toy. :)
 
 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