diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-10-05 18:48:57 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-10-05 18:48:57 +0000 |
commit | 9a414901db86c2d5435153f8c64878fe86df163d (patch) | |
tree | 8173bcad89244a3ea8dcfc279bc9353a6d00435b /llvm/lib/CodeGen/LiveInterval.cpp | |
parent | 1c9afa1aeb7de21a66bc4a16534ff2384f8c3b3a (diff) | |
download | bcm5719-llvm-9a414901db86c2d5435153f8c64878fe86df163d.tar.gz bcm5719-llvm-9a414901db86c2d5435153f8c64878fe86df163d.zip |
Tweak VNInfo printing.
llvm-svn: 115650
Diffstat (limited to 'llvm/lib/CodeGen/LiveInterval.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveInterval.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/LiveInterval.cpp b/llvm/lib/CodeGen/LiveInterval.cpp index 0ea8f5978c9..fad11fa0806 100644 --- a/llvm/lib/CodeGen/LiveInterval.cpp +++ b/llvm/lib/CodeGen/LiveInterval.cpp @@ -683,6 +683,8 @@ void LiveInterval::print(raw_ostream &OS, const TargetRegisterInfo *TRI) const { OS << "x"; } else { OS << vni->def; + if (vni->isPHIDef()) + OS << "-phidef"; if (vni->hasPHIKill()) OS << "-phikill"; if (vni->hasRedefByEC()) |