diff options
author | Lang Hames <lhames@gmail.com> | 2010-09-25 12:04:16 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2010-09-25 12:04:16 +0000 |
commit | 564956867e85b45ca72cd1d62d0ac0055175a22e (patch) | |
tree | c8718a444f43d129a32618cab50863c6670de13a /llvm/lib/CodeGen/LiveInterval.cpp | |
parent | 8b99b8a782cfa1680673acf3e247c242a714992e (diff) | |
download | bcm5719-llvm-564956867e85b45ca72cd1d62d0ac0055175a22e.tar.gz bcm5719-llvm-564956867e85b45ca72cd1d62d0ac0055175a22e.zip |
Removed VNInfo::isDefAccurate(). Def "accuracy" can be checked by testing whether LiveIntervals::getInstructionFromIndex(def) returns NULL.
llvm-svn: 114791
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 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()) |