Missed one silly assert :-)


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11048 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp
index 84ae3ba..f4b2a9b 100644
--- a/lib/CodeGen/LiveIntervalAnalysis.cpp
+++ b/lib/CodeGen/LiveIntervalAnalysis.cpp
@@ -401,7 +401,7 @@
                     assert(MRegisterInfo::isPhysicalRegister(intA->reg) &&
                            MRegisterInfo::isVirtualRegister(intB->reg) &&
                            "A must be physical and B must be virtual");
-                    assert(intA->reg != intB->reg);
+
                     if (!intA->overlaps(*intB) &&
                          !overlapsAliases(*intA, *intB)) {
                         intA->join(*intB);