diff options
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/MachineVerifier.cpp | 14 | 
1 files changed, 12 insertions, 2 deletions
| diff --git a/llvm/lib/CodeGen/MachineVerifier.cpp b/llvm/lib/CodeGen/MachineVerifier.cpp index f26886fd20f..91a536d0631 100644 --- a/llvm/lib/CodeGen/MachineVerifier.cpp +++ b/llvm/lib/CodeGen/MachineVerifier.cpp @@ -1014,8 +1014,18 @@ void MachineVerifier::visitMachineFunctionAfter() {    }    // Now check liveness info if available -  if (LiveVars || LiveInts) -    calcRegsRequired(); +  calcRegsRequired(); + +  if (MRI->isSSA() && !MF->empty()) { +    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'; +    } +  } +    if (LiveVars)      verifyLiveVariables();    if (LiveInts) | 

