summaryrefslogtreecommitdiffstats
path: root/llvm/docs/tutorial/LangImpl1.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-10-22 06:34:15 +0000
committerChris Lattner <sabre@nondot.org>2007-10-22 06:34:15 +0000
commit3a48708c917b40f43d80b0e077d70b60ac6ec047 (patch)
tree501e2804108d5ce4f5c0109ad4501a15ba4a2453 /llvm/docs/tutorial/LangImpl1.html
parentbbed04336ca0d82bba40bbde90114a6e785bc22d (diff)
downloadbcm5719-llvm-3a48708c917b40f43d80b0e077d70b60ac6ec047.tar.gz
bcm5719-llvm-3a48708c917b40f43d80b0e077d70b60ac6ec047.zip
Check in part 2: parser and ast.
llvm-svn: 43218
Diffstat (limited to 'llvm/docs/tutorial/LangImpl1.html')
-rw-r--r--llvm/docs/tutorial/LangImpl1.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/docs/tutorial/LangImpl1.html b/llvm/docs/tutorial/LangImpl1.html
index 49ad1818d8b..a699ed6f5e3 100644
--- a/llvm/docs/tutorial/LangImpl1.html
+++ b/llvm/docs/tutorial/LangImpl1.html
@@ -56,7 +56,7 @@ which looks like this:</p>
<pre>
# Compute the x'th fibonacci number.
def fib(x)
- if x < 3 then
+ if x &lt; 3 then
1
else
fib(x-1)+fib(x-2)
@@ -241,8 +241,8 @@ this code:</p>
<p>With this, we have the complete lexer for the basic Kaleidoscope language.
Next we'll <a href="LangImpl2.html">build a simple parser that uses this to
-build an Abstract Syntax Tree</a>. If you prefer, you can jump to the <a
-href="index.html">main tutorial index page</a>.
+build an Abstract Syntax Tree</a>. When we have that, we'll include a driver
+so that you can use the lexer and parser together.
</p>
</div>
OpenPOWER on IntegriCloud