]> granicus.if.org Git - llvm/commitdiff
[Kaleidoscope][BuildingAJIT] Remove some superfluous commas in Chapter 2.
authorLang Hames <lhames@gmail.com>
Mon, 20 Jun 2016 18:37:52 +0000 (18:37 +0000)
committerLang Hames <lhames@gmail.com>
Mon, 20 Jun 2016 18:37:52 +0000 (18:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@273184 91177308-0d34-0410-b5e6-96231b3b80d8

docs/tutorial/BuildingAJIT2.rst

index 7d417b692752519d4fe5fd2269cd99f1ad6c7125..7f2b4a8b264dd9ffdbae1fcb6ce5d69f4197e353 100644 (file)
@@ -32,9 +32,9 @@ in short: to optimize a Module we create an llvm::FunctionPassManager
 instance, configure it with a set of optimizations, then run the PassManager on
 a Module to mutate it into a (hopefully) more optimized but semantically
 equivalent form. In the original tutorial series the FunctionPassManager was
-created outside the KaleidoscopeJIT, and modules were optimized before being
+created outside the KaleidoscopeJIT and modules were optimized before being
 added to it. In this Chapter we will make optimization a phase of our JIT
-instead. For now, this will provide us a motivation to learn more about ORC
+instead. For now this will provide us a motivation to learn more about ORC
 layers, but in the long term making optimization part of our JIT will yield an
 important benefit: When we begin lazily compiling code (i.e. deferring
 compilation of each function until the first time it's run), having