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

Jay Foad jay.foad at gmail.com
Thu Apr 7 05:41:09 PDT 2011


Author: foad
Date: Thu Apr  7 07:41:09 2011
New Revision: 129073

URL: http://llvm.org/viewvc/llvm-project?rev=129073&view=rev
Log:
Fix a bit of nonsense.

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=129073&r1=129072&r2=129073&view=diff
==============================================================================
--- llvm/trunk/docs/WritingAnLLVMPass.html (original)
+++ llvm/trunk/docs/WritingAnLLVMPass.html Thu Apr  7 07:41:09 2011
@@ -751,7 +751,7 @@
 
 <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 @@
 
 <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>





More information about the llvm-commits mailing list