Report the defining instruction.

llvm-svn: 152460
This commit is contained in:
Jakob Stoklund Olesen 2012-03-10 00:44:11 +00:00
parent 5c3128acf6
commit ee9a75c67f

View File

@ -1020,10 +1020,9 @@ void MachineVerifier::visitMachineFunctionAfter() {
BBInfo &MInfo = MBBInfoMap[&MF->front()];
for (RegSet::iterator
I = MInfo.vregsRequired.begin(), E = MInfo.vregsRequired.end(); I != E;
++I) {
report("Virtual register def doesn't dominate all uses.", MF);
*OS << "- register:\t" << PrintReg(*I) << '\n';
}
++I)
report("Virtual register def doesn't dominate all uses.",
MRI->getVRegDef(*I));
}
if (LiveVars)