[llvm-commits] CVS: llvm/www/docs/CommandLine.html WritingAnLLVMPass.html
Michael Brukman
brukman at cs.uiuc.edu
Thu Aug 21 17:15:02 PDT 2003
Changes in directory llvm/www/docs:
CommandLine.html updated: 1.14 -> 1.15
WritingAnLLVMPass.html updated: 1.17 -> 1.18
---
Log message:
The word `dependent' has no `a'.
---
Diffs of the changes:
Index: llvm/www/docs/CommandLine.html
diff -u llvm/www/docs/CommandLine.html:1.14 llvm/www/docs/CommandLine.html:1.15
--- llvm/www/docs/CommandLine.html:1.14 Tue Aug 19 18:11:43 2003
+++ llvm/www/docs/CommandLine.html Thu Aug 21 17:14:26 2003
@@ -1398,7 +1398,7 @@
doesn't work if your fundemental data type is something that is already
supported.<p>
-<li>Write an independant class, using it explicitly from options that need
+<li>Write an independent class, using it explicitly from options that need
it.<p>
This approach works well in situations where you would line to parse an
Index: llvm/www/docs/WritingAnLLVMPass.html
diff -u llvm/www/docs/WritingAnLLVMPass.html:1.17 llvm/www/docs/WritingAnLLVMPass.html:1.18
--- llvm/www/docs/WritingAnLLVMPass.html:1.17 Mon Aug 18 09:41:19 2003
+++ llvm/www/docs/WritingAnLLVMPass.html Thu Aug 21 17:14:26 2003
@@ -436,7 +436,7 @@
href="http://llvm.cs.uiuc.edu/doxygen/classPass.html">FunctionPass</a></tt>
subclasses do have a predictable, local behavior that can be expected by the
system. All <tt>FunctionPass</tt> execute on each function in the program
-independant of all of the other functions in the program.
+independent of all of the other functions in the program.
<tt>FunctionPass</tt>'s do not require that they are executed in a particular
order, and <tt>FunctionPass</tt>'s do not modify external functions.<p>
@@ -474,7 +474,7 @@
A good example of how this method should be used is the <a
href="http://llvm.cs.uiuc.edu/doxygen/LowerAllocations_8cpp-source.html">LowerAllocations</a>
pass. This pass converts <tt>malloc</tt> and <tt>free</tt> instructions into
-platform dependant <tt>malloc()</tt> and <tt>free()</tt> function calls. It
+platform dependent <tt>malloc()</tt> and <tt>free()</tt> function calls. It
uses the <tt>doInitialization</tt> method to get a reference to the malloc and
free functions that it needs, adding prototypes to the module if necessary.<p>
More information about the llvm-commits
mailing list