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 | d9f6ec977a9543e88c52fa5fb3737ae03402fc4c (patch) | |
tree | 1e29f5619afedb8f5eadf7f30f15863f0390e585 /lib | |
parent | cba270d042862bca213b812656a2181b0de0578e (diff) | |
download | external_llvm-d9f6ec977a9543e88c52fa5fb3737ae03402fc4c.zip external_llvm-d9f6ec977a9543e88c52fa5fb3737ae03402fc4c.tar.gz external_llvm-d9f6ec977a9543e88c52fa5fb3737ae03402fc4c.tar.bz2 |
Print VNInfo flags.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108277 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/LiveInterval.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp index 1b8509b..ad57284 100644 --- a/lib/CodeGen/LiveInterval.cpp +++ b/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"; } } } |