diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-07-13 21:19:05 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-07-13 21:19:05 +0000 |
commit | cd7a40f4ecda12246b409a355d3016713cdacf59 (patch) | |
tree | dc7348a22b6d6aa5ae729101a434b63d3c99f7f4 /llvm/lib | |
parent | bb0260139a92ccd7439e290ab795a2e94f84921b (diff) | |
download | bcm5719-llvm-cd7a40f4ecda12246b409a355d3016713cdacf59.tar.gz bcm5719-llvm-cd7a40f4ecda12246b409a355d3016713cdacf59.zip |
Print VNInfo flags.
llvm-svn: 108277
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/LiveInterval.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/LiveInterval.cpp b/llvm/lib/CodeGen/LiveInterval.cpp index 1b8509b9a15..ad572845806 100644 --- a/llvm/lib/CodeGen/LiveInterval.cpp +++ b/llvm/lib/CodeGen/LiveInterval.cpp @@ -861,6 +861,10 @@ void LiveInterval::print(raw_ostream &OS, const TargetRegisterInfo *TRI) const { OS << "?"; else OS << vni->def; + if (vni->hasPHIKill()) + OS << "-phikill"; + if (vni->hasRedefByEC()) + OS << "-ec"; } } } |