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 | 4cf102de04d0164b14289d25a51e5fa0f1228099 (patch) | |
tree | a974daa140abe971b43ad853409b113450c1262a /docs | |
parent | b2902b2eb0a45d4d1338c0941435f7c66bbfbbaf (diff) |
[Kaleidoscope][BuildingAJIT] Fix a punctuation mistake in Chapter 2.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@273183 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/tutorial/BuildingAJIT2.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/BuildingAJIT2.rst b/docs/tutorial/BuildingAJIT2.rst index 7d42c45200a..7d417b69275 100644 --- a/docs/tutorial/BuildingAJIT2.rst +++ b/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 |