diff options
Diffstat (limited to 'llvm/lib/CodeGen/LiveInterval.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/LiveInterval.cpp | 5 | 
1 files changed, 1 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/LiveInterval.cpp b/llvm/lib/CodeGen/LiveInterval.cpp index 44101ff..b4f0a94 100644 --- a/llvm/lib/CodeGen/LiveInterval.cpp +++ b/llvm/lib/CodeGen/LiveInterval.cpp @@ -678,10 +678,7 @@ void LiveInterval::print(raw_ostream &OS, const TargetRegisterInfo *TRI) const {        if (vni->isUnused()) {          OS << "x";        } else { -        if (!vni->isDefAccurate() && !vni->isPHIDef()) -          OS << "?"; -        else -          OS << vni->def; +        OS << vni->def;          if (vni->hasPHIKill())            OS << "-phikill";          if (vni->hasRedefByEC())  | 
