aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/DataStructure
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-03-20 04:29:39 +0000
committerChris Lattner <sabre@nondot.org>2005-03-20 04:29:39 +0000
commitbc6f966a44ead19279af7f6bc2c3a598463e1be8 (patch)
tree9ff5703d59688b97d956b5f0e41779336187a6f2 /lib/Analysis/DataStructure
parent5f75ff65bc39d2d837afbc6ab455fa113ba3abac (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.cpp1
-rw-r--r--lib/Analysis/DataStructure/CompleteBottomUp.cpp1
-rw-r--r--lib/Analysis/DataStructure/EquivClassGraphs.cpp1
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);