Use the latest MachineRegisterInfo APIs. No functionality.

llvm-svn: 161010
This commit is contained in:
Andrew Trick 2012-07-30 23:48:17 +00:00
parent 79df0de4fc
commit 79795897b3
1 changed files with 1 additions and 1 deletions

View File

@ -414,7 +414,7 @@ void ScheduleDAGInstrs::addVRegDefDeps(SUnit *SU, unsigned OperIdx) {
// Singly defined vregs do not have output/anti dependencies.
// The current operand is a def, so we have at least one.
// Check here if there are any others...
if (llvm::next(MRI.def_begin(Reg)) == MRI.def_end())
if (MRI.hasOneDef(Reg))
return;
// Add output dependence to the next nearest def of this vreg.