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
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 @@
     OS << "%reg" << reg;
 
   OS << ',' << weight;
+  if (isEarlyClobber)
+    OS << ",earlyclobber";
+  if (overlapsEarlyClobber)
+    OS << ",overlapsearly";
 
   if (empty())
     OS << " EMPTY";