diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-20 04:29:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-20 04:29:39 +0000 |
commit | bc6f966a44ead19279af7f6bc2c3a598463e1be8 (patch) | |
tree | 9ff5703d59688b97d956b5f0e41779336187a6f2 /lib/Analysis/DataStructure | |
parent | 5f75ff65bc39d2d837afbc6ab455fa113ba3abac (diff) |
remove some pointless asserts
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20713 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure')
-rw-r--r-- | lib/Analysis/DataStructure/BottomUpClosure.cpp | 1 | ||||
-rw-r--r-- | lib/Analysis/DataStructure/CompleteBottomUp.cpp | 1 | ||||
-rw-r--r-- | lib/Analysis/DataStructure/EquivClassGraphs.cpp | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp index 928946fde9..e7899c9e56 100644 --- a/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -452,7 +452,6 @@ void BUDataStructures::calculateGraph(DSGraph &Graph) { } // Recompute the Incomplete markers - assert(Graph.getInlinedGlobals().empty()); Graph.maskIncompleteMarkers(); Graph.markIncompleteNodes(DSGraph::MarkFormalArgs); diff --git a/lib/Analysis/DataStructure/CompleteBottomUp.cpp b/lib/Analysis/DataStructure/CompleteBottomUp.cpp index 0b97995a77..6f3a7c29fe 100644 --- a/lib/Analysis/DataStructure/CompleteBottomUp.cpp +++ b/lib/Analysis/DataStructure/CompleteBottomUp.cpp @@ -252,7 +252,6 @@ void CompleteBUDataStructures::processGraph(DSGraph &G) { } // Recompute the Incomplete markers - assert(G.getInlinedGlobals().empty()); G.maskIncompleteMarkers(); G.markIncompleteNodes(DSGraph::MarkFormalArgs); diff --git a/lib/Analysis/DataStructure/EquivClassGraphs.cpp b/lib/Analysis/DataStructure/EquivClassGraphs.cpp index 447b36d780..a5621911e4 100644 --- a/lib/Analysis/DataStructure/EquivClassGraphs.cpp +++ b/lib/Analysis/DataStructure/EquivClassGraphs.cpp @@ -468,7 +468,6 @@ void EquivClassGraphs::processGraph(DSGraph &G) { } // Recompute the Incomplete markers. - assert(G.getInlinedGlobals().empty()); G.maskIncompleteMarkers(); G.markIncompleteNodes(DSGraph::MarkFormalArgs); |