[llvm-commits] CVS: llvm/www/docs/AliasAnalysis.html CodingStandards.html OpenProjects.html ProgrammersManual.html WritingAnLLVMPass.html

Michael Brukman brukman at cs.uiuc.edu
Mon Aug 18 09:42:01 PDT 2003


Changes in directory llvm/www/docs:

AliasAnalysis.html updated: 1.2 -> 1.3
CodingStandards.html updated: 1.9 -> 1.10
OpenProjects.html updated: 1.9 -> 1.10
ProgrammersManual.html updated: 1.44 -> 1.45
WritingAnLLVMPass.html updated: 1.16 -> 1.17

---
Log message:

Spell `necessary' correctly.


---
Diffs of the changes:

Index: llvm/www/docs/AliasAnalysis.html
diff -u llvm/www/docs/AliasAnalysis.html:1.2 llvm/www/docs/AliasAnalysis.html:1.3
--- llvm/www/docs/AliasAnalysis.html:1.2	Wed May  7 16:47:16 2003
+++ llvm/www/docs/AliasAnalysis.html	Mon Aug 18 09:41:19 2003
@@ -68,7 +68,7 @@
 provide it, allowing for powerful analyses and transformations to work well
 together.<p>
 
-This document contains information neccesary to successfully implement this
+This document contains information necessary to successfully implement this
 interface, use it, and to test both sides.  It also explains some of the finer
 points about what exactly results mean.  If you feel that something is unclear
 or should be added, please <a href="mailto:sabre at nondot.org">let me know</a>.<p>


Index: llvm/www/docs/CodingStandards.html
diff -u llvm/www/docs/CodingStandards.html:1.9 llvm/www/docs/CodingStandards.html:1.10
--- llvm/www/docs/CodingStandards.html:1.9	Thu Aug  7 16:45:47 2003
+++ llvm/www/docs/CodingStandards.html	Mon Aug 18 09:41:19 2003
@@ -93,7 +93,7 @@
 //===----------------------------------------------------------------------===//
 </pre>
 
-A few things to note about this particular format.  The "<tt>-*- C++ -*-</tt>" string on the first line is there to tell Emacs that the source file is a C++ file, not a C file (Emacs assumes .h files are C files by default [Note that tag this is not neccesary in .cpp files]).  The name of the file is also on the first line, along with a very short description of the purpose of the file.  This is important when printing out code and flipping though lots of pages.<p>
+A few things to note about this particular format.  The "<tt>-*- C++ -*-</tt>" string on the first line is there to tell Emacs that the source file is a C++ file, not a C file (Emacs assumes .h files are C files by default [Note that tag this is not necessary in .cpp files]).  The name of the file is also on the first line, along with a very short description of the purpose of the file.  This is important when printing out code and flipping though lots of pages.<p>
 
 The main body of the description does not have to be very long in most cases.  Here it's only two lines.  If an algorithm is being implemented or something tricky is going on, a reference to the paper where it is published should be included, as well as any notes or "gotchas" in the code to watch out for.<p>
 
@@ -105,7 +105,7 @@
 
 <h4><li>Method information</h4>
 
-Methods defined in a class (as well as any global functions) should also be documented properly.  A quick note about what it does any a description of the borderline behaviour is all that is neccesary here (unless something particularly tricky or insideous is going on).  The hope is that people can figure out how to use your interfaces without reading the code itself... that is the goal metric.<p>
+Methods defined in a class (as well as any global functions) should also be documented properly.  A quick note about what it does any a description of the borderline behaviour is all that is necessary here (unless something particularly tricky or insideous is going on).  The hope is that people can figure out how to use your interfaces without reading the code itself... that is the goal metric.<p>
 
 Good things to talk about here are what happens when something unexpected happens: does the method return null?  Abort?  Format your hard disk?<p>
 </ol>


Index: llvm/www/docs/OpenProjects.html
diff -u llvm/www/docs/OpenProjects.html:1.9 llvm/www/docs/OpenProjects.html:1.10
--- llvm/www/docs/OpenProjects.html:1.9	Wed Aug  6 10:40:37 2003
+++ llvm/www/docs/OpenProjects.html	Mon Aug 18 09:41:19 2003
@@ -92,7 +92,7 @@
 
 <li>Graphs - It would be great to have gnuplot graphs to keep track of how the
     tree is changing over time.  We already gather a several statistics, it
-    just neccesary to add the script-fu to gnuplotize it.
+    just necessary to add the script-fu to gnuplotize it.
 
 <li>Regression tests - We should run the regression tests in addition to the
     program tests...


Index: llvm/www/docs/ProgrammersManual.html
diff -u llvm/www/docs/ProgrammersManual.html:1.44 llvm/www/docs/ProgrammersManual.html:1.45
--- llvm/www/docs/ProgrammersManual.html:1.44	Tue Aug  5 17:54:23 2003
+++ llvm/www/docs/ProgrammersManual.html	Mon Aug 18 09:41:19 2003
@@ -1452,7 +1452,7 @@
 <li><tt>Function::BasicBlockListType &getBasicBlockList()</tt><p>
 
 Returns the list of <a href="#BasicBlock"><tt>BasicBlock</tt></a>s.  This is
-neccesary to use when you need to update the list or perform a complex action
+necessary to use when you need to update the list or perform a complex action
 that doesn't have a forwarding method.<p>
 
 
@@ -1467,7 +1467,7 @@
 <li><tt>Function::ArgumentListType &getArgumentList()</tt><p>
 
 Returns the list of <a href="#Argument"><tt>Argument</tt></a>s.  This is
-neccesary to use when you need to update the list or perform a complex action
+necessary to use when you need to update the list or perform a complex action
 that doesn't have a forwarding method.<p>
 
 
@@ -1583,7 +1583,7 @@
 <li><tt>Module::FunctionListType &getFunctionList()</tt><p>
 
 Returns the list of <a href="#Function"><tt>Function</tt></a>s.  This is
-neccesary to use when you need to update the list or perform a complex action
+necessary to use when you need to update the list or perform a complex action
 that doesn't have a forwarding method.<p>
 
 <!--  Global Variable -->
@@ -1601,7 +1601,7 @@
 <li><tt>Module::GlobalListType &getGlobalList()</tt><p>
 
 Returns the list of <a href="#GlobalVariable"><tt>GlobalVariable</tt></a>s.
-This is neccesary to use when you need to update the list or perform a complex
+This is necessary to use when you need to update the list or perform a complex
 action that doesn't have a forwarding method.<p>
 
 


Index: llvm/www/docs/WritingAnLLVMPass.html
diff -u llvm/www/docs/WritingAnLLVMPass.html:1.16 llvm/www/docs/WritingAnLLVMPass.html:1.17
--- llvm/www/docs/WritingAnLLVMPass.html:1.16	Tue Jul 22 15:53:20 2003
+++ llvm/www/docs/WritingAnLLVMPass.html	Mon Aug 18 09:41:19 2003
@@ -367,7 +367,7 @@
 
 When choosing a superclass for your Pass, you should choose the <b>most
 specific</b> class possible, while still being able to meet the requirements
-listed.  This gives the LLVM Pass Infrastructure information neccesary to
+listed.  This gives the LLVM Pass Infrastructure information necessary to
 optimize how passes are run, so that the resultant compiler isn't unneccesarily
 slow.<p>
 
@@ -476,7 +476,7 @@
 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
 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 neccesary.<p>
+free functions that it needs, adding prototypes to the module if necessary.<p>
 
 <!-- _______________________________________________________________________ -->
 </ul><h4><a name="runOnFunction"><hr size=0>The <tt>runOnFunction</tt> method</h4><ul>





More information about the llvm-commits mailing list