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 | a818c072af2f94704d08776d5bc7c50a012e40c2 (patch) | |
tree | 109f4bc7570f12ec7b7b7182e3a32b7c08aa12c8 /lib/CodeGen/LiveInterval.cpp | |
parent | 201ecfca9892b2eab2d04aa5da59f3f5e1efe49d (diff) |
Tweak VNInfo printing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115650 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveInterval.cpp')
-rw-r--r-- | lib/CodeGen/LiveInterval.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp index 0ea8f5978c..fad11fa080 100644 --- a/lib/CodeGen/LiveInterval.cpp +++ b/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()) |