From: Jakob Stoklund Olesen Date: Tue, 13 Jul 2010 21:19:05 +0000 (+0000) Subject: Print VNInfo flags. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d9f6ec977a9543e88c52fa5fb3737ae03402fc4c;p=oota-llvm.git Print VNInfo flags. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108277 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp index 1b8509b9a15..ad572845806 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"; } } }