diff options
author | Dale Johannesen <dalej@apple.com> | 2008-09-19 01:02:35 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2008-09-19 01:02:35 +0000 |
commit | f9b08792f0b05b1d6de43152960ca84aaee84602 (patch) | |
tree | a8f9875394aebdba26f7d1b2f886ead96f181e1f /lib/CodeGen/LiveInterval.cpp | |
parent | a910155ca16f698a38fbd86bad46b0e67cc90688 (diff) | |
download | external_llvm-f9b08792f0b05b1d6de43152960ca84aaee84602.tar.gz external_llvm-f9b08792f0b05b1d6de43152960ca84aaee84602.tar.bz2 external_llvm-f9b08792f0b05b1d6de43152960ca84aaee84602.zip |
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.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp index ff430d71c7..06e9722b97 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"; |