diff options
author | Duncan Sands <baldrick@free.fr> | 2007-11-05 15:15:50 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2007-11-05 15:15:50 +0000 |
commit | e0a34353ee4bf0d990c55f6a9f593666bffb69ab (patch) | |
tree | e87bd39baec823c83b7e86948defee6ddba1e2e9 /docs/tutorial/JITTutorial1.html | |
parent | db807edd66d6f6fd566a050f3b6f1af6f7c09082 (diff) |
Trivial fixes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43707 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial/JITTutorial1.html')
-rw-r--r-- | docs/tutorial/JITTutorial1.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorial/JITTutorial1.html b/docs/tutorial/JITTutorial1.html index 9819c77e0b..14af4e9838 100644 --- a/docs/tutorial/JITTutorial1.html +++ b/docs/tutorial/JITTutorial1.html @@ -91,7 +91,7 @@ int main(int argc, char**argv) { <p>Finally, we instantiate an LLVM <code>PassManager</code> and run the <code>PrintModulePass</code> on our module. LLVM uses an explicit pass infrastructure to manage optimizations and various other things. A <code>PassManager</code>, as should be obvious from its name, manages passes: it is responsible for scheduling them, invoking them, and insuring the proper disposal after we’re done with them. For this example, we’re just using a trivial pass that prints out our module in textual form.</p> -<p>Now onto the interesting part: creating a populating a module. Here’s the first chunk of our <code>makeLLVMModule()</code>:</p> +<p>Now onto the interesting part: creating and populating a module. Here’s the first chunk of our <code>makeLLVMModule()</code>:</p> <div class="doc_code"> <pre> @@ -191,4 +191,4 @@ Module* makeLLVMModule() { </address> </body> -</html>
\ No newline at end of file +</html> |