[llvm-commits] [llvm] r57388 - /llvm/trunk/lib/CodeGen/SimpleRegisterCoalescing.cpp

Chris Lattner sabre at nondot.org
Sat Oct 11 16:59:06 PDT 2008


Author: lattner
Date: Sat Oct 11 18:59:03 2008
New Revision: 57388

URL: http://llvm.org/viewvc/llvm-project?rev=57388&view=rev
Log:
fix typo

Modified:
    llvm/trunk/lib/CodeGen/SimpleRegisterCoalescing.cpp

Modified: llvm/trunk/lib/CodeGen/SimpleRegisterCoalescing.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SimpleRegisterCoalescing.cpp?rev=57388&r1=57387&r2=57388&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/SimpleRegisterCoalescing.cpp (original)
+++ llvm/trunk/lib/CodeGen/SimpleRegisterCoalescing.cpp Sat Oct 11 18:59:03 2008
@@ -465,7 +465,7 @@
   MachineBasicBlock *MBB = CopyMI->getParent();
   tii_->reMaterialize(*MBB, MII, DstReg, DefMI);
   MachineInstr *NewMI = prior(MII);
-  // CopyMI may have implicit instructions, transfer them over to the newly
+  // CopyMI may have implicit operands, transfer them over to the newly
   // rematerialized instruction. And update implicit def interval valnos.
   for (unsigned i = CopyMI->getDesc().getNumOperands(),
          e = CopyMI->getNumOperands(); i != e; ++i) {





More information about the llvm-commits mailing list