Remove invalid assert
authorJakob Stoklund Olesen <stoklund@2pi.dk>
Fri, 2 Jul 2010 19:54:47 +0000 (19:54 +0000)
committerJakob Stoklund Olesen <stoklund@2pi.dk>
Fri, 2 Jul 2010 19:54:47 +0000 (19:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107505 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/InlineSpiller.cpp

index 71305ed863657bbcd3167b5a0f11dd58c8c35dcd..076d2308ce30c023287d729993e54aee722e3188 100644 (file)
@@ -258,7 +258,6 @@ void InlineSpiller::reMaterializeAll() {
         continue;
     }
     DEBUG(dbgs() << "Removing debug info due to remat:" << "\t" << *MI);
-    assert(&*RI != MI && "Multiple register operands on debug value");
     MI->eraseFromParent();
   }
 }