diff options
| author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2015-04-30 23:20:56 +0000 | 
|---|---|---|
| committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2015-04-30 23:20:56 +0000 | 
| commit | 59d2ca1cba46408817ea9fd54850e679954fd1ee (patch) | |
| tree | 9a8f84ed6f7449752a20b5af2533e04d4af8b479 | |
| parent | 451755d370a14a507df79760b078087da7f60c9c (diff) | |
| download | bcm5719-llvm-59d2ca1cba46408817ea9fd54850e679954fd1ee.tar.gz bcm5719-llvm-59d2ca1cba46408817ea9fd54850e679954fd1ee.zip  | |
Fix typo
llvm-svn: 236283
| -rw-r--r-- | llvm/lib/CodeGen/MachineVerifier.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineVerifier.cpp b/llvm/lib/CodeGen/MachineVerifier.cpp index 47e8306f3c9..ec85e55139f 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);          }  | 

