aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/LiveInterval.cpp
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2008-09-24 01:07:17 +0000
committerDale Johannesen <dalej@apple.com>2008-09-24 01:07:17 +0000
commit9446407963005f3edfa8ac70e265c81839a416c9 (patch)
treed5f083d21eb91a360fb9abe380d16fbd60d1689e /lib/CodeGen/LiveInterval.cpp
parent93044ceb33ed9ba6acaa9385725074b3cad4899f (diff)
downloadexternal_llvm-9446407963005f3edfa8ac70e265c81839a416c9.zip
external_llvm-9446407963005f3edfa8ac70e265c81839a416c9.tar.gz
external_llvm-9446407963005f3edfa8ac70e265c81839a416c9.tar.bz2
Next round of earlyclobber handling. Approach the
RA problem by expanding the live interval of an earlyclobber def back one slot. Remove overlap-earlyclobber throughout. Remove earlyclobber bits and their handling from live internals. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56539 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveInterval.cpp')
-rw-r--r--lib/CodeGen/LiveInterval.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp
index 06e9722..ff430d7 100644
--- a/lib/CodeGen/LiveInterval.cpp
+++ b/lib/CodeGen/LiveInterval.cpp
@@ -686,10 +686,6 @@ void LiveInterval::print(std::ostream &OS,
OS << "%reg" << reg;
OS << ',' << weight;
- if (isEarlyClobber)
- OS << ",earlyclobber";
- if (overlapsEarlyClobber)
- OS << ",overlapsearly";
if (empty())
OS << " EMPTY";