From: Matt Arsenault Date: Thu, 30 Apr 2015 23:20:56 +0000 (+0000) Subject: Fix typo X-Git-Tag: llvmorg-3.7.0-rc1~5574 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=59d2ca1cba46408817ea9fd54850e679954fd1ee;p=platform%2Fupstream%2Fllvm.git Fix typo llvm-svn: 236283 --- diff --git a/llvm/lib/CodeGen/MachineVerifier.cpp b/llvm/lib/CodeGen/MachineVerifier.cpp index 47e8306..ec85e55 100644 --- a/llvm/lib/CodeGen/MachineVerifier.cpp +++ b/llvm/lib/CodeGen/MachineVerifier.cpp @@ -333,7 +333,7 @@ bool MachineVerifier::runOnMachineFunction(MachineFunction &MF) { const MachineInstr &MI = *MBBI; const MachineOperand &Op = MI.getOperand(I); if (Op.getParent() != &MI) { - // Make sure to use correct addOperand / RmeoveOperand / ChangeTo + // Make sure to use correct addOperand / RemoveOperand / ChangeTo // functions when replacing operands of a MachineInstr. report("Instruction has operand with wrong parent set", &MI); }