From 71001c97c6dda3df509ba4b9b37f979ea1aa8127 Mon Sep 17 00:00:00 2001 From: Jay Foad Date: Thu, 7 Apr 2011 12:41:09 +0000 Subject: [PATCH] Fix a bit of nonsense. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129073 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/WritingAnLLVMPass.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index 97db123ed7d..fe93a87e97a 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -751,7 +751,7 @@ loop nest order such that outer most loop is processed last.

LoopPass subclasses are allowed to update loop nest using LPPassManager interface. Implementing a loop pass is usually -straightforward. Looppass's may overload three virtual methods to +straightforward. LoopPass'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.

@@ -829,7 +829,7 @@ region is processed last.

RegionPass subclasses are allowed to update the region tree by using the RGPassManager interface. You may overload three virtual methods of -RegionPass to implementing your own region pass is usually. All these +RegionPass to implement your own region pass. All these methods should return true if they modified the program, or false if they didn not.