diff options
author | Lang Hames <lhames@gmail.com> | 2016-06-20 18:34:46 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2016-06-20 18:34:46 +0000 |
commit | 8705d113e4ca281024fef8a189f27ba59def533f (patch) | |
tree | e2d4fbde6066b3cd8e891d565befefc665a12616 /llvm/docs/tutorial | |
parent | 2209625387dec54240858a6b6a7a42bd6fcf241c (diff) | |
download | bcm5719-llvm-8705d113e4ca281024fef8a189f27ba59def533f.tar.gz bcm5719-llvm-8705d113e4ca281024fef8a189f27ba59def533f.zip |
[Kaleidoscope][BuildingAJIT] Fix a punctuation mistake in Chapter 2.
llvm-svn: 273183
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r-- | llvm/docs/tutorial/BuildingAJIT2.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/BuildingAJIT2.rst b/llvm/docs/tutorial/BuildingAJIT2.rst index 7d42c45200a..7d417b69275 100644 --- a/llvm/docs/tutorial/BuildingAJIT2.rst +++ b/llvm/docs/tutorial/BuildingAJIT2.rst @@ -28,7 +28,7 @@ Optimizing Modules using the IRTransformLayer 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 |