summaryrefslogtreecommitdiff
path: root/docs/WritingAnLLVMPass.html
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-06-15 18:22:49 +0000
committerDan Gohman <gohman@apple.com>2009-06-15 18:22:49 +0000
commitd87c9e35d10d0b7b01bcd618f2cf083ce838d1d8 (patch)
tree7d045ebe8fcc8b40d17861953ffd1bbd328a0cab /docs/WritingAnLLVMPass.html
parent070c42f3111f6b69686405a583926e2cdb88379f (diff)
downloadllvm-d87c9e35d10d0b7b01bcd618f2cf083ce838d1d8.tar.gz
llvm-d87c9e35d10d0b7b01bcd618f2cf083ce838d1d8.tar.bz2
llvm-d87c9e35d10d0b7b01bcd618f2cf083ce838d1d8.tar.xz
Fix a typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73397 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/WritingAnLLVMPass.html')
-rw-r--r--docs/WritingAnLLVMPass.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html
index 9eb97e1d66..8374bfac67 100644
--- a/docs/WritingAnLLVMPass.html
+++ b/docs/WritingAnLLVMPass.html
@@ -1537,7 +1537,7 @@ need some way to free analysis results when they are no longer useful. The
<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>