From efc182e49ca2c2aacaa637b16d50e77d00003f55 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Mon, 8 Mar 2004 23:06:46 +0000 Subject: [PATCH] Fix some spelling and grammar. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12244 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/WritingAnLLVMPass.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index 4ca6d4e0730..39d4e1668a3 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -1381,8 +1381,8 @@ approach is that none of the PassManager features can be used for timing and debugging the actual loading of the module from disk or standard input.

-

To solve this problem, eventually the PassManger class will accept a -ModuleSource object instead of a Module itself. When complete, this +

To solve this problem, eventually the PassManager class will accept +a ModuleSource object instead of a Module itself. When complete, this will also allow for streaming of functions out of the bytecode representation, allowing us to avoid holding the entire program in memory at once if we only are dealing with FunctionPasses.

@@ -1396,7 +1396,7 @@ capable of this, the loader just needs to be reworked a bit.

-Pass's requiring FunctionPass's +Passes requiring FunctionPasses