[llvm] r273183 - [Kaleidoscope][BuildingAJIT] Fix a punctuation mistake in Chapter 2.
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 20 11:34:47 PDT 2016
Author: lhames
Date: Mon Jun 20 13:34:46 2016
New Revision: 273183
URL: http://llvm.org/viewvc/llvm-project?rev=273183&view=rev
Log:
[Kaleidoscope][BuildingAJIT] Fix a punctuation mistake 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=273183&r1=273182&r2=273183&view=diff
==============================================================================
--- llvm/trunk/docs/tutorial/BuildingAJIT2.rst (original)
+++ llvm/trunk/docs/tutorial/BuildingAJIT2.rst Mon Jun 20 13:34:46 2016
@@ -28,7 +28,7 @@ Optimizing Modules using the IRTransform
In `Chapter 4 <LangImpl4.html>`_ of the "Implementing a language with LLVM"
tutorial series the llvm *FunctionPassManager* is introduced as a means for
optimizing LLVM IR. Interested readers may read that chapter for details, but
-in short, to optimize a Module we create an llvm::FunctionPassManager
+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
More information about the llvm-commits
mailing list