[llvm] r273184 - [Kaleidoscope][BuildingAJIT] Remove some superfluous commas in Chapter 2.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 20 11:37:53 PDT 2016


Author: lhames
Date: Mon Jun 20 13:37:52 2016
New Revision: 273184

URL: http://llvm.org/viewvc/llvm-project?rev=273184&view=rev
Log:
[Kaleidoscope][BuildingAJIT] Remove some superfluous commas in Chapter 2.

Modified:
    llvm/trunk/docs/tutorial/BuildingAJIT2.rst

Modified: llvm/trunk/docs/tutorial/BuildingAJIT2.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/BuildingAJIT2.rst?rev=273184&r1=273183&r2=273184&view=diff
==============================================================================
--- llvm/trunk/docs/tutorial/BuildingAJIT2.rst (original)
+++ llvm/trunk/docs/tutorial/BuildingAJIT2.rst Mon Jun 20 13:37:52 2016
@@ -32,9 +32,9 @@ in short: to optimize a Module we create
 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




More information about the llvm-commits mailing list