diff options
author | Duncan Sands <baldrick@free.fr> | 2011-02-15 09:23:02 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2011-02-15 09:23:02 +0000 |
commit | ab4c366274a582dd8146b2820c6b999cad5fce36 (patch) | |
tree | e001ba4266c9828f1ef1d35dd1df18f3d1a633fe /docs/WritingAnLLVMPass.html | |
parent | ab8f3fd2e1c07231deffba8ea4ecd06ac559afe4 (diff) |
Spelling fix: consequtive -> consecutive.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125563 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/WritingAnLLVMPass.html')
-rw-r--r-- | docs/WritingAnLLVMPass.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index 10668b365f..edc8631d0a 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -1474,7 +1474,7 @@ results as soon as they are no longer needed.</li> <li><b>Pipeline the execution of passes on the program</b> - The <tt>PassManager</tt> attempts to get better cache and memory usage behavior out of a series of passes by pipelining the passes together. This means that, given -a series of consequtive <a href="#FunctionPass"><tt>FunctionPass</tt></a>'s, it +a series of consecutive <a href="#FunctionPass"><tt>FunctionPass</tt></a>'s, it will execute all of the <a href="#FunctionPass"><tt>FunctionPass</tt></a>'s on the first function, then all of the <a href="#FunctionPass"><tt>FunctionPass</tt></a>es on the second function, |