LiveInterval: Print weight in print() function.

llvm-svn: 323702
This commit is contained in:
Matthias Braun 2018-01-29 22:03:00 +00:00
parent d0c89f851b
commit bd4bc3f186
1 changed files with 1 additions and 0 deletions

View File

@ -991,6 +991,7 @@ void LiveInterval::print(raw_ostream &OS) const {
// Print subranges
for (const SubRange &SR : subranges())
OS << SR;
OS << " weight:" << weight;
}
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)