From: Matt Arsenault Date: Thu, 30 Apr 2015 23:20:56 +0000 (+0000) Subject: Fix typo X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=04a02922de63b52e676c0e8b8d9cf1e5cf9e53f7;p=oota-llvm.git Fix typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236283 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineVerifier.cpp b/lib/CodeGen/MachineVerifier.cpp index 47e8306f3c9..ec85e55139f 100644 --- a/lib/CodeGen/MachineVerifier.cpp +++ b/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); }