aboutsummaryrefslogtreecommitdiffstats
path: root/docs/WritingAnLLVMPass.html
diff options
context:
space:
mode:
authorJay Foad <jay.foad@gmail.com>2011-04-07 12:41:09 +0000
committerJay Foad <jay.foad@gmail.com>2011-04-07 12:41:09 +0000
commit71001c97c6dda3df509ba4b9b37f979ea1aa8127 (patch)
tree1f4f7dcb196d2d23a87d3f0ff2a1e127bf710da5 /docs/WritingAnLLVMPass.html
parenta844a3e7b2bae7a0b3c0ed4547b26346c17e2779 (diff)
downloadexternal_llvm-71001c97c6dda3df509ba4b9b37f979ea1aa8127.zip
external_llvm-71001c97c6dda3df509ba4b9b37f979ea1aa8127.tar.gz
external_llvm-71001c97c6dda3df509ba4b9b37f979ea1aa8127.tar.bz2
Fix a bit of nonsense.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129073 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/WritingAnLLVMPass.html')
-rw-r--r--docs/WritingAnLLVMPass.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html
index 97db123..fe93a87 100644
--- a/docs/WritingAnLLVMPass.html
+++ b/docs/WritingAnLLVMPass.html
@@ -751,7 +751,7 @@ loop nest order such that outer most loop is processed last. </p>
<p> <tt>LoopPass</tt> subclasses are allowed to update loop nest using
<tt>LPPassManager</tt> interface. Implementing a loop pass is usually
-straightforward. <tt>Looppass</tt>'s may overload three virtual methods to
+straightforward. <tt>LoopPass</tt>'s may overload three virtual methods to
do their work. All these methods should return true if they modified the
program, or false if they didn't. </p>
</div>
@@ -829,7 +829,7 @@ region is processed last. </p>
<p> <tt>RegionPass</tt> subclasses are allowed to update the region tree by using
the <tt>RGPassManager</tt> interface. You may overload three virtual methods of
-<tt>RegionPass</tt> to implementing your own region pass is usually. All these
+<tt>RegionPass</tt> to implement your own region pass. All these
methods should return true if they modified the program, or false if they didn not.
</p>
</div>