diff options
author | Owen Anderson <resistor@mac.com> | 2007-10-20 06:12:33 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2007-10-20 06:12:33 +0000 |
commit | 0ec16ee98e8900e52cb4353688244508bd202975 (patch) | |
tree | 140fc8b992fe2770602b4b7216762f97a58ee20a /docs/tutorial/Tutorial1.html | |
parent | 7d69c95759f9adba42c606c823e73f796dc5e069 (diff) |
Some improvements based on feedback from Anders.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43203 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial/Tutorial1.html')
-rw-r--r-- | docs/tutorial/Tutorial1.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorial/Tutorial1.html b/docs/tutorial/Tutorial1.html index bb7f8d1c48..7757016403 100644 --- a/docs/tutorial/Tutorial1.html +++ b/docs/tutorial/Tutorial1.html @@ -44,7 +44,7 @@ entry: </pre> </div> -<p>Before going any further in this tutorial, you should look through the <a href="../LangRef.html">LLVM Language Reference Manual</a> and convince yourself that the above LLVM IR is actually equivalent to the original function. Once you’re satisfied with that, let’s move on to actually generating it programmatically!</p> +<p>If you're unsure what the above code says, skim through the <a href="../LangRef.html">LLVM Language Reference Manual</a> and convince yourself that the above LLVM IR is actually equivalent to the original function. Once you’re satisfied with that, let’s move on to actually generating it programmatically!</p> <p>... STUFF ABOUT HEADERS ... </p> @@ -76,7 +76,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>createLLVMModule()</code>:</p> +<p>Now onto the interesting part: creating a populating a module. Here’s the first chunk of our <code>makeLLVMModule()</code>:</p> <div class="doc_code"> <pre> |