summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2007-12-10 20:26:29 +0000
committerJohn Criswell <criswell@uiuc.edu>2007-12-10 20:26:29 +0000
commit9795bb867734054f83a2cfe9fc81ae0032707485 (patch)
tree4b6890cbbef03399ae4016630b16fd0dde1013cb /docs
parent1a4ab520d53b375a6e8dc49c5fce647b09557d06 (diff)
downloadllvm-9795bb867734054f83a2cfe9fc81ae0032707485.tar.gz
llvm-9795bb867734054f83a2cfe9fc81ae0032707485.tar.bz2
llvm-9795bb867734054f83a2cfe9fc81ae0032707485.tar.xz
Fix some wording.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44810 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/WritingAnLLVMPass.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html
index aae0dec6b1..4ae039d753 100644
--- a/docs/WritingAnLLVMPass.html
+++ b/docs/WritingAnLLVMPass.html
@@ -1376,7 +1376,8 @@ the LLVM program representation for a single function at a time, instead of
traversing the entire program. It reduces the memory consumption of compiler,
because, for example, only one <a
href="http://llvm.org/doxygen/classllvm_1_1DominatorSet.html"><tt>DominatorSet</tt></a>
-needs to be calculated at a time. This also makes it possible some <a
+needs to be calculated at a time. This also makes it possible to implement
+some <a
href="#SMP">interesting enhancements</a> in the future.</p></li>
</ol>