diff options
author | Chris Lattner <sabre@nondot.org> | 2008-10-11 23:59:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-10-11 23:59:03 +0000 |
commit | 99cbdff66c6a1f35e83f8103bf444ddab61fcb59 (patch) | |
tree | a86ec63682c7a82ab0e44de1ace14c90c789720a /lib/CodeGen | |
parent | a6321b40c22025b09c1bbff9df7f4b0470835b0b (diff) | |
download | external_llvm-99cbdff66c6a1f35e83f8103bf444ddab61fcb59.zip external_llvm-99cbdff66c6a1f35e83f8103bf444ddab61fcb59.tar.gz external_llvm-99cbdff66c6a1f35e83f8103bf444ddab61fcb59.tar.bz2 |
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57388 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/SimpleRegisterCoalescing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SimpleRegisterCoalescing.cpp b/lib/CodeGen/SimpleRegisterCoalescing.cpp index 0a77826..bb860d2 100644 --- a/lib/CodeGen/SimpleRegisterCoalescing.cpp +++ b/lib/CodeGen/SimpleRegisterCoalescing.cpp @@ -465,7 +465,7 @@ bool SimpleRegisterCoalescing::ReMaterializeTrivialDef(LiveInterval &SrcInt, 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) { |