From: Marek Kurdej Date: Fri, 22 May 2020 12:32:39 +0000 (+0200) Subject: [Target] Fix typos. NFC X-Git-Tag: llvmorg-12-init~5351 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9301e3aaca5986fd9517c6e35704a1619dc35694;p=platform%2Fupstream%2Fllvm.git [Target] Fix typos. NFC --- diff --git a/llvm/lib/Target/ARM/ARMAsmPrinter.cpp b/llvm/lib/Target/ARM/ARMAsmPrinter.cpp index d1f3573..d6c1efa 100644 --- a/llvm/lib/Target/ARM/ARMAsmPrinter.cpp +++ b/llvm/lib/Target/ARM/ARMAsmPrinter.cpp @@ -1106,7 +1106,7 @@ void ARMAsmPrinter::EmitUnwindingInstruction(const MachineInstr *MI) { // 1) for Thumb1 code we sometimes materialize the constant via constpool // load. // 2) for Thumb2 execute only code we materialize the constant via - // immediate constants in 2 seperate instructions (MOVW/MOVT). + // immediate constants in 2 separate instructions (MOVW/MOVT). SrcReg = ~0U; DstReg = MI->getOperand(0).getReg(); break; diff --git a/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp b/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp index 02618b3..fa1ba4f 100644 --- a/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp +++ b/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp @@ -1064,7 +1064,7 @@ bool HexagonPacketizerList::ignorePseudoInstruction(const MachineInstr &MI, } bool HexagonPacketizerList::isSoloInstruction(const MachineInstr &MI) { - // Ensure any bundles created by gather packetize remain seperate. + // Ensure any bundles created by gather packetize remain separate. if (MI.isBundle()) return true; diff --git a/llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp b/llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp index a0cef92..4fbad61 100644 --- a/llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp +++ b/llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp @@ -442,7 +442,7 @@ public: Name = StringRef(NameLoc.getPointer(), Name.size()); // WebAssembly has instructions with / in them, which AsmLexer parses - // as seperate tokens, so if we find such tokens immediately adjacent (no + // as separate tokens, so if we find such tokens immediately adjacent (no // whitespace), expand the name to include them: for (;;) { auto &Sep = Lexer.getTok(); @@ -700,7 +700,7 @@ public: // WebAssemblyAsmPrinter::EmitFunctionBodyStart. // TODO: would be good to factor this into a common function, but the // assembler and backend really don't share any common code, and this code - // parses the locals seperately. + // parses the locals separately. auto SymName = expectIdent(); if (SymName.empty()) return true; diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp b/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp index 07f183c..eedc2c0 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp +++ b/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp @@ -318,7 +318,7 @@ static void removeRegisterOperands(const MachineInstr *MI, MCInst &OutMI) { // Remove all uses of stackified registers to bring the instruction format // into its final stack form used thruout MC, and transition opcodes to // their _S variant. - // We do this seperate from the above code that still may need these + // We do this separate from the above code that still may need these // registers for e.g. call_indirect signatures. // See comments in lib/Target/WebAssembly/WebAssemblyInstrFormats.td for // details.