Skip to content

Commit 1c20c82

Browse files
committed
LiveVariables: Fix typo and shorten comment
llvm-svn: 264768
1 parent 40b44e1 commit 1c20c82

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

llvm/lib/CodeGen/LiveVariables.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -529,10 +529,8 @@ void LiveVariables::runOnInstr(MachineInstr *MI,
529529
UseRegs.push_back(MOReg);
530530
} else {
531531
assert(MO.isDef());
532-
// FIXME: We should not remove any dead flags. Howeve the MIPS RDDSP
533-
// instruction needs it at the moment: RDDSP gets its implicit use
534-
// operands added too late in the processing so InstrEmitter adds an
535-
// incorrect dead flag because the uses are not yet visible.
532+
// FIXME: We should not remove any dead flags. However the MIPS RDDSP
533+
// instruction needs it at the moment: http://llvm.org/PR27116.
536534
if (TargetRegisterInfo::isPhysicalRegister(MOReg) &&
537535
!MRI->isReserved(MOReg))
538536
MO.setIsDead(false);

0 commit comments

Comments
 (0)