[llvm-commits] CVS: llvm/lib/VMCore/Dominators.cpp Pass.cpp Verifier.cpp

Misha Brukman brukman at cs.uiuc.edu
Mon Aug 18 09:35:03 PDT 2003


Changes in directory llvm/lib/VMCore:

Dominators.cpp updated: 1.44 -> 1.45
Pass.cpp updated: 1.46 -> 1.47
Verifier.cpp updated: 1.53 -> 1.54

---
Log message:

Spell `necessary' correctly.


---
Diffs of the changes:

Index: llvm/lib/VMCore/Dominators.cpp
diff -u llvm/lib/VMCore/Dominators.cpp:1.44 llvm/lib/VMCore/Dominators.cpp:1.45
--- llvm/lib/VMCore/Dominators.cpp:1.44	Thu May 22 16:47:17 2003
+++ llvm/lib/VMCore/Dominators.cpp	Mon Aug 18 09:34:26 2003
@@ -21,7 +21,7 @@
 A("domset", "Dominator Set Construction", true);
 
 // dominates - Return true if A dominates B.  This performs the special checks
-// neccesary if A and B are in the same basic block.
+// necessary if A and B are in the same basic block.
 //
 bool DominatorSetBase::dominates(Instruction *A, Instruction *B) const {
   BasicBlock *BBA = A->getParent(), *BBB = B->getParent();


Index: llvm/lib/VMCore/Pass.cpp
diff -u llvm/lib/VMCore/Pass.cpp:1.46 llvm/lib/VMCore/Pass.cpp:1.47
--- llvm/lib/VMCore/Pass.cpp:1.46	Thu Aug 14 01:07:55 2003
+++ llvm/lib/VMCore/Pass.cpp	Mon Aug 18 09:34:26 2003
@@ -177,7 +177,7 @@
 }
 
 // print - Print out the internal state of the pass.  This is called by Analyse
-// to print out the contents of an analysis.  Otherwise it is not neccesary to
+// to print out the contents of an analysis.  Otherwise it is not necessary to
 // implement this method.
 //
 void Pass::print(std::ostream &O) const {


Index: llvm/lib/VMCore/Verifier.cpp
diff -u llvm/lib/VMCore/Verifier.cpp:1.53 llvm/lib/VMCore/Verifier.cpp:1.54
--- llvm/lib/VMCore/Verifier.cpp:1.53	Wed Aug  6 15:08:23 2003
+++ llvm/lib/VMCore/Verifier.cpp	Mon Aug 18 09:34:26 2003
@@ -260,7 +260,7 @@
             "Function return type does not match operand "
             "type of return inst!", &RI, F->getReturnType());
 
-  // Check to make sure that the return value has neccesary properties for
+  // Check to make sure that the return value has necessary properties for
   // terminators...
   visitTerminatorInst(RI);
 }





More information about the llvm-commits mailing list