[llvm-commits] [llvm] r73397 - /llvm/trunk/docs/WritingAnLLVMPass.html

Dan Gohman gohman at apple.com
Mon Jun 15 11:22:49 PDT 2009


Author: djg
Date: Mon Jun 15 13:22:49 2009
New Revision: 73397

URL: http://llvm.org/viewvc/llvm-project?rev=73397&view=rev
Log:
Fix a typo.

Modified:
    llvm/trunk/docs/WritingAnLLVMPass.html

Modified: llvm/trunk/docs/WritingAnLLVMPass.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/WritingAnLLVMPass.html?rev=73397&r1=73396&r2=73397&view=diff

==============================================================================
--- llvm/trunk/docs/WritingAnLLVMPass.html (original)
+++ llvm/trunk/docs/WritingAnLLVMPass.html Mon Jun 15 13:22:49 2009
@@ -1537,7 +1537,7 @@
 <p>If you are writing an analysis or any other pass that retains a significant
 amount of state (for use by another pass which "requires" your pass and uses the
 <a href="#getAnalysis">getAnalysis</a> method) you should implement
-<tt>releaseMEmory</tt> to, well, release the memory allocated to maintain this
+<tt>releaseMemory</tt> to, well, release the memory allocated to maintain this
 internal state.  This method is called after the <tt>run*</tt> method for the
 class, before the next call of <tt>run*</tt> in your pass.</p>
 





More information about the llvm-commits mailing list