diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-18 14:43:39 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-18 14:43:39 +0000 |
commit | 5560c9d49ccae132cabf1155f18aa0480dce3eda (patch) | |
tree | 8fd8c1924c3dd2243b805e6e4d076cbdc57855fb /docs/WritingAnLLVMPass.html | |
parent | 00d7af60b0ac2e790b5be2821ccca895a00b0972 (diff) | |
download | external_llvm-5560c9d49ccae132cabf1155f18aa0480dce3eda.zip external_llvm-5560c9d49ccae132cabf1155f18aa0480dce3eda.tar.gz external_llvm-5560c9d49ccae132cabf1155f18aa0480dce3eda.tar.bz2 |
Spell `necessary' correctly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7944 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/WritingAnLLVMPass.html')
-rw-r--r-- | docs/WritingAnLLVMPass.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index a39369f..e176435 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -367,7 +367,7 @@ available, from the most general to the most specific.<p> When choosing a superclass for your Pass, you should choose the <b>most specific</b> class possible, while still being able to meet the requirements -listed. This gives the LLVM Pass Infrastructure information neccesary to +listed. This gives the LLVM Pass Infrastructure information necessary to optimize how passes are run, so that the resultant compiler isn't unneccesarily slow.<p> @@ -476,7 +476,7 @@ href="http://llvm.cs.uiuc.edu/doxygen/LowerAllocations_8cpp-source.html">LowerAl pass. This pass converts <tt>malloc</tt> and <tt>free</tt> instructions into platform dependant <tt>malloc()</tt> and <tt>free()</tt> function calls. It uses the <tt>doInitialization</tt> method to get a reference to the malloc and -free functions that it needs, adding prototypes to the module if neccesary.<p> +free functions that it needs, adding prototypes to the module if necessary.<p> <!-- _______________________________________________________________________ --> </ul><h4><a name="runOnFunction"><hr size=0>The <tt>runOnFunction</tt> method</h4><ul> |