[llvm-commits] CVS: llvm/lib/Target/Sparc/EmitAssembly.cpp

Misha Brukman brukman at cs.uiuc.edu
Mon Aug 18 09:33:04 PDT 2003


Changes in directory llvm/lib/Target/Sparc:

EmitAssembly.cpp updated: 1.88 -> 1.89

---
Log message:

Spell `necessary' correctly.


---
Diffs of the changes:

Index: llvm/lib/Target/Sparc/EmitAssembly.cpp
diff -u llvm/lib/Target/Sparc/EmitAssembly.cpp:1.88 llvm/lib/Target/Sparc/EmitAssembly.cpp:1.89
--- llvm/lib/Target/Sparc/EmitAssembly.cpp:1.88	Tue Aug  5 11:01:50 2003
+++ llvm/lib/Target/Sparc/EmitAssembly.cpp	Mon Aug 18 09:32:23 2003
@@ -1,6 +1,6 @@
 //===-- EmitAssembly.cpp - Emit Sparc Specific .s File ---------------------==//
 //
-// This file implements all of the stuff neccesary to output a .s file from
+// This file implements all of the stuff necessary to output a .s file from
 // LLVM.  The code in this file assumes that the specified module has already
 // been compiled into the internal data structures of the Module.
 //
@@ -90,10 +90,10 @@
   }
   
   // enterSection - Use this method to enter a different section of the output
-  // executable.  This is used to only output neccesary section transitions.
+  // executable.  This is used to only output necessary section transitions.
   //
   void enterSection(enum Sections S) {
-    if (S == CurSection) return;        // Only switch section if neccesary
+    if (S == CurSection) return;        // Only switch section if necessary
     CurSection = S;
 
     toAsm << "\n\t.section ";





More information about the llvm-commits mailing list