aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/LiveInterval.cpp
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2008-09-19 01:02:35 +0000
committerDale Johannesen <dalej@apple.com>2008-09-19 01:02:35 +0000
commitfa48f941304f29f967e0a7fc6807d7026ba99b7b (patch)
treea8f9875394aebdba26f7d1b2f886ead96f181e1f /lib/CodeGen/LiveInterval.cpp
parent4fe0fe8b493437e91f8510b81462ff39f0d889ca (diff)
downloadexternal_llvm-fa48f941304f29f967e0a7fc6807d7026ba99b7b.zip
external_llvm-fa48f941304f29f967e0a7fc6807d7026ba99b7b.tar.gz
external_llvm-fa48f941304f29f967e0a7fc6807d7026ba99b7b.tar.bz2
Remove AsmThatEarlyClobber etc. from LiveIntervalAnalysis
and redo as linked list walk. Logic moved into RA. Per review feedback. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56326 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveInterval.cpp')
-rw-r--r--lib/CodeGen/LiveInterval.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp
index ff430d7..06e9722 100644
--- a/lib/CodeGen/LiveInterval.cpp
+++ b/lib/CodeGen/LiveInterval.cpp
@@ -686,6 +686,10 @@ void LiveInterval::print(std::ostream &OS,
OS << "%reg" << reg;
OS << ',' << weight;
+ if (isEarlyClobber)
+ OS << ",earlyclobber";
+ if (overlapsEarlyClobber)
+ OS << ",overlapsearly";
if (empty())
OS << " EMPTY";