[llvm-commits] [llvm] r103756 - /llvm/trunk/lib/MC/MCParser/AsmParser.cpp

Eric Christopher echristo at apple.com
Thu May 13 18:38:54 PDT 2010


Author: echristo
Date: Thu May 13 20:38:54 2010
New Revision: 103756

URL: http://llvm.org/viewvc/llvm-project?rev=103756&view=rev
Log:
Fix a couple of typos.

Modified:
    llvm/trunk/lib/MC/MCParser/AsmParser.cpp

Modified: llvm/trunk/lib/MC/MCParser/AsmParser.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/MCParser/AsmParser.cpp?rev=103756&r1=103755&r2=103756&view=diff
==============================================================================
--- llvm/trunk/lib/MC/MCParser/AsmParser.cpp (original)
+++ llvm/trunk/lib/MC/MCParser/AsmParser.cpp Thu May 13 20:38:54 2010
@@ -1316,7 +1316,7 @@
     return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
                  "be less than zero");
 
-  // NOTE: The alignment in the directive is a power of 2 value, the assember
+  // NOTE: The alignment in the directive is a power of 2 value, the assembler
   // may internally end up wanting an alignment in bytes.
   // FIXME: Diagnose overflow.
   if (Pow2Alignment < 0)
@@ -1406,7 +1406,7 @@
     return Error(SizeLoc, "invalid '.zerofill' directive size, can't be less "
                  "than zero");
 
-  // NOTE: The alignment in the directive is a power of 2 value, the assember
+  // NOTE: The alignment in the directive is a power of 2 value, the assembler
   // may internally end up wanting an alignment in bytes.
   // FIXME: Diagnose overflow.
   if (Pow2Alignment < 0)





More information about the llvm-commits mailing list