ARM: fix a few typos in comments
authorSaleem Abdulrasool <compnerd@compnerd.org>
Sun, 29 Dec 2013 17:58:31 +0000 (17:58 +0000)
committerSaleem Abdulrasool <compnerd@compnerd.org>
Sun, 29 Dec 2013 17:58:31 +0000 (17:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198171 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMInstrVFP.td
lib/Target/ARM/AsmParser/ARMAsmParser.cpp

index 399a5fa4c5fcd00bae346a6fcbc36c410525527a..0912b473cbb522bcd2822c8bcf2232239957a72a 100644 (file)
@@ -1639,7 +1639,7 @@ def FCONSTS : VFPAI<(outs SPR:$Sd), (ins vfp_f32imm:$imm),
 //===----------------------------------------------------------------------===//
 // Assembler aliases.
 //
-// A few mnemnoic aliases for pre-unifixed syntax. We don't guarantee to
+// A few mnemonic aliases for pre-unifixed syntax. We don't guarantee to
 // support them all, but supporting at least some of the basics is
 // good to be friendly.
 def : VFP2MnemonicAlias<"flds", "vldr">;
index a8bdef61b5beb8d458c7ab5896fabd466e5a3b92..d4122bcb4af26953f84ac40713f5d47aaf665c82 100644 (file)
@@ -5112,7 +5112,7 @@ bool ARMAsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
                                     SMLoc NameLoc,
                                SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
   // Apply mnemonic aliases before doing anything else, as the destination
-  // mnemnonic may include suffices and we want to handle them normally.
+  // mnemonic may include suffices and we want to handle them normally.
   // The generic tblgen'erated code does this later, at the start of
   // MatchInstructionImpl(), but that's too late for aliases that include
   // any sort of suffix.