From 564956867e85b45ca72cd1d62d0ac0055175a22e Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Sat, 25 Sep 2010 12:04:16 +0000 Subject: Removed VNInfo::isDefAccurate(). Def "accuracy" can be checked by testing whether LiveIntervals::getInstructionFromIndex(def) returns NULL. llvm-svn: 114791 --- llvm/lib/CodeGen/LiveInterval.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'llvm/lib/CodeGen/LiveInterval.cpp') diff --git a/llvm/lib/CodeGen/LiveInterval.cpp b/llvm/lib/CodeGen/LiveInterval.cpp index 44101ffee7a..b4f0a94e97f 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()) -- cgit v1.2.3