diff options
author | Lang Hames <lhames@gmail.com> | 2016-06-20 18:37:52 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2016-06-20 18:37:52 +0000 |
commit | 11c43d5a37c3b07355d6a6937e047ca182ca14e3 (patch) | |
tree | ac99769fe0b04effe55f61688ac0c643dea2d084 /llvm/docs/tutorial | |
parent | 8705d113e4ca281024fef8a189f27ba59def533f (diff) | |
download | bcm5719-llvm-11c43d5a37c3b07355d6a6937e047ca182ca14e3.tar.gz bcm5719-llvm-11c43d5a37c3b07355d6a6937e047ca182ca14e3.zip |
[Kaleidoscope][BuildingAJIT] Remove some superfluous commas in Chapter 2.
llvm-svn: 273184
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r-- | llvm/docs/tutorial/BuildingAJIT2.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/tutorial/BuildingAJIT2.rst b/llvm/docs/tutorial/BuildingAJIT2.rst index 7d417b69275..7f2b4a8b264 100644 --- a/llvm/docs/tutorial/BuildingAJIT2.rst +++ b/llvm/docs/tutorial/BuildingAJIT2.rst @@ -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 |