diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-09-13 14:58:24 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-09-13 14:58:24 +0000 |
commit | bb69208df851f94bdd51c4f14b1cf54be3ada599 (patch) | |
tree | 0a9eec80f0558bcd68e57af91db6711f3ced9a1a /llvm/docs/tutorial | |
parent | 6d186504216446a1620628057c10bddb9b0b9085 (diff) | |
download | bcm5719-llvm-bb69208df851f94bdd51c4f14b1cf54be3ada599.tar.gz bcm5719-llvm-bb69208df851f94bdd51c4f14b1cf54be3ada599.zip |
Fix a few spellos in docs.
(Trying to debug an incremental build thing on a bot...)
llvm-svn: 371860
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r-- | llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst | 2 | ||||
-rw-r--r-- | llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst index f5a46a68fcf..bf4e2398d28 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst @@ -318,7 +318,7 @@ look like this: TheJIT->removeModule(H); } -If parsing and codegen succeeed, the next step is to add the module containing +If parsing and codegen succeed, the next step is to add the module containing the top-level expression to the JIT. We do this by calling addModule, which triggers code generation for all the functions in the module, and returns a handle that can be used to remove the module from the JIT later. Once the module diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst index 218e4419135..31e2ffb1690 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst @@ -520,7 +520,7 @@ Here is the code after the mem2reg pass runs: This is a trivial case for mem2reg, since there are no redefinitions of the variable. The point of showing this is to calm your tension about -inserting such blatent inefficiencies :). +inserting such blatant inefficiencies :). After the rest of the optimizers run, we get: |