From 6bfd10ff80af827d1f2ecfd955496ca9d3550945 Mon Sep 17 00:00:00 2001 From: Jonathan Roelofs Date: Mon, 9 Mar 2020 15:07:44 -0600 Subject: Fix internal links in Kaleidoscope tutorial --- llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst | 2 +- llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst | 2 +- llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/docs/tutorial') diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst index c07c3ab..ab9656b 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst @@ -314,7 +314,7 @@ Now that we have all of our simple expression-parsing logic in place, we can define a helper function to wrap it together into one entry point. We call this class of expressions "primary" expressions, for reasons that will become more clear `later in the -tutorial `_. In order to parse an arbitrary +tutorial `_. In order to parse an arbitrary primary expression, we need to determine what sort of expression it is: .. code-block:: c++ diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst index dd3a3f1..87c7a37 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst @@ -113,7 +113,7 @@ keywords: return tok_identifier; This just adds lexer support for the unary and binary keywords, like we -did in `previous chapters `_. One nice thing +did in `previous chapters `_. One nice thing about our current AST, is that we represent binary operators with full generalisation by using their ASCII code as the opcode. For our extended operators, we'll use this same representation, so we don't need any new diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst index a30be98..d7abeea 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst @@ -399,7 +399,7 @@ the unabridged code): ... This code is virtually identical to the code `before we allowed mutable -variables `_. The big difference is that we +variables `_. The big difference is that we no longer have to construct a PHI node, and we use load/store to access the variable as needed. -- cgit v1.1