[llvm-commits] CVS: llvm/lib/CWriter/Writer.cpp

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


Changes in directory llvm/lib/CWriter:

Writer.cpp updated: 1.115 -> 1.116

---
Log message:

Spell `necessary' correctly.


---
Diffs of the changes:

Index: llvm/lib/CWriter/Writer.cpp
diff -u llvm/lib/CWriter/Writer.cpp:1.115 llvm/lib/CWriter/Writer.cpp:1.116
--- llvm/lib/CWriter/Writer.cpp:1.115	Thu Aug 14 14:19:53 2003
+++ llvm/lib/CWriter/Writer.cpp	Mon Aug 18 09:30:30 2003
@@ -924,7 +924,7 @@
 }
 
 // Specific Instruction type classes... note that all of the casts are
-// neccesary because we use the instruction classes as opaque types...
+// necessary because we use the instruction classes as opaque types...
 //
 void CWriter::visitReturnInst(ReturnInst &I) {
   // Don't output a void return if this is the last basic block in the function
@@ -1024,7 +1024,7 @@
         printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
       }
     } else {
-      // First goto not neccesary, assume second one is...
+      // First goto not necessary, assume second one is...
       Out << "  if (!";
       writeOperand(I.getCondition());
       Out << ") {\n";





More information about the llvm-commits mailing list