Fix spelling.
authorJim Grosbach <grosbach@apple.com>
Sat, 2 May 2015 00:44:07 +0000 (00:44 +0000)
committerJim Grosbach <grosbach@apple.com>
Sat, 2 May 2015 00:44:07 +0000 (00:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236367 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCAsmInfo.h
include/llvm/MC/MCContext.h
include/llvm/MC/MCDwarf.h
include/llvm/MC/MCLabel.h
include/llvm/MC/MCSymbol.h
lib/CodeGen/SplitKit.h

index 05da1d1871fc2d2beabb3e8fa6846b7c175bf341..6e04d058832347b4bbd6a544662c8390e582cf77 100644 (file)
@@ -228,7 +228,7 @@ protected:
 
   /// True if the expression
   ///   .long f - g
-  /// uses an relocation but it can be supressed by writting
+  /// uses a relocation but it can be suppressed by writing
   ///   a = f - g
   ///   .long a
   bool SetDirectiveSuppressesReloc;
@@ -256,7 +256,7 @@ protected:
   /// argument and how it is interpreted.  Defaults to NoAlignment.
   LCOMM::LCOMMType LCOMMDirectiveAlignmentType;
 
-  // True if the target allows .align directives on funtions. This is true for
+  // True if the target allows .align directives on functions. This is true for
   // most targets, so defaults to true.
   bool HasFunctionAlignment;
 
index 231b02095e81c29bfe65ccf3a9a69a139f3601bc..a3443ddfc7cf9c051dd2a6e2dbb744a691248d25 100644 (file)
@@ -75,7 +75,7 @@ namespace llvm {
     /// other.
     DenseMap<const MCSectionELF*, MCSymbol*> SectionSymbols;
 
-    /// A maping from a local label number and an instance count to a symbol.
+    /// A mapping from a local label number and an instance count to a symbol.
     /// For example, in the assembly
     ///     1:
     ///     2:
index c266acf2f09c59201ae236504f122a337e09c753..e4eea6861d4854fe1fd21af889e2b1c45369d5fa 100644 (file)
@@ -39,7 +39,7 @@ class SMLoc;
 
 /// MCDwarfFile - Instances of this class represent the name of the dwarf
 /// .file directive and its associated dwarf file number in the MC file,
-/// and MCDwarfFile's are created and unique'd by the MCContext class where
+/// and MCDwarfFile's are created and uniqued by the MCContext class where
 /// the file number for each is its index into the vector of DwarfFiles (note
 /// index 0 is not used and not a valid dwarf file number).
 struct MCDwarfFile {
index a386deb554ccb0b44f4484cfbaf9c40355b39b6f..a056ad2a7705251110e33f7446bbdca612395e8b 100644 (file)
@@ -21,7 +21,7 @@ namespace llvm {
   class raw_ostream;
 
   /// MCLabel - Instances of this class represent a label name in the MC file,
-  /// and MCLabel are created and unique'd by the MCContext class.  MCLabel
+  /// and MCLabel are created and uniqued by the MCContext class.  MCLabel
   /// should only be constructed for valid instances in the object file.
   class MCLabel {
     // Instance - the instance number of this Directional Local Label
index f1c36f54e08a6b956424c19d967451f9fdd9dfd6..67b645ad95cdac3675350df4daf8d7068f822f5b 100644 (file)
@@ -25,7 +25,7 @@ namespace llvm {
   class raw_ostream;
 
   /// MCSymbol - Instances of this class represent a symbol name in the MC file,
-  /// and MCSymbols are created and unique'd by the MCContext class.  MCSymbols
+  /// and MCSymbols are created and uniqued by the MCContext class.  MCSymbols
   /// should only be constructed with valid names for the object file.
   ///
   /// If the symbol is defined/emitted into the current translation unit, the
index 2e60c1445b81d40c1b11c5cf9369418e3fb5bc23..a0627634a822270e26af3e507426d0d2c3ceac0c 100644 (file)
@@ -419,7 +419,7 @@ public:
   ///              There may be extra indices created by dead code elimination.
   void finish(SmallVectorImpl<unsigned> *LRMap = nullptr);
 
-  /// dump - print the current interval maping to dbgs().
+  /// dump - print the current interval mapping to dbgs().
   void dump() const;
 
   // ===--- High level methods ---===