remove some pointless asserts
authorChris Lattner <sabre@nondot.org>
Sun, 20 Mar 2005 04:29:39 +0000 (04:29 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 20 Mar 2005 04:29:39 +0000 (04:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20713 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DataStructure/BottomUpClosure.cpp
lib/Analysis/DataStructure/CompleteBottomUp.cpp
lib/Analysis/DataStructure/EquivClassGraphs.cpp

index 928946fde9794782930c5d5db244e5838f7fd2fd..e7899c9e56f256927a096f8047eb088345b548e1 100644 (file)
@@ -452,7 +452,6 @@ void BUDataStructures::calculateGraph(DSGraph &Graph) {
   }
 
   // Recompute the Incomplete markers
-  assert(Graph.getInlinedGlobals().empty());
   Graph.maskIncompleteMarkers();
   Graph.markIncompleteNodes(DSGraph::MarkFormalArgs);
 
index 0b97995a772fec40f36a748a8cf7de014b2f2e2f..6f3a7c29fe3f654b22e7c4ef188a2933ffb7a3fc 100644 (file)
@@ -252,7 +252,6 @@ void CompleteBUDataStructures::processGraph(DSGraph &G) {
   }
 
   // Recompute the Incomplete markers
-  assert(G.getInlinedGlobals().empty());
   G.maskIncompleteMarkers();
   G.markIncompleteNodes(DSGraph::MarkFormalArgs);
 
index 447b36d7808117d15912582891263c4be0e7bdfc..a5621911e42d3084bae55c0da589825dcf84d333 100644 (file)
@@ -468,7 +468,6 @@ void EquivClassGraphs::processGraph(DSGraph &G) {
   }
 
   // Recompute the Incomplete markers.
-  assert(G.getInlinedGlobals().empty());
   G.maskIncompleteMarkers();
   G.markIncompleteNodes(DSGraph::MarkFormalArgs);