summaryrefslogtreecommitdiff
path: root/lib/Analysis/DataStructure
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-05-12 17:41:45 +0000
committerChris Lattner <sabre@nondot.org>2006-05-12 17:41:45 +0000
commit82db0696a10be17ebbebdabea1a08d0668d07ea3 (patch)
tree873d3e267be8aa2e4b1807f60da194e38180208b /lib/Analysis/DataStructure
parentb57b516f6d009ca3683f598a6026e23c7d1386e9 (diff)
Remove dead variable
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28249 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure')
-rw-r--r--lib/Analysis/DataStructure/EquivClassGraphs.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Analysis/DataStructure/EquivClassGraphs.cpp b/lib/Analysis/DataStructure/EquivClassGraphs.cpp
index 4aa65b2a036..cc536a7f89c 100644
--- a/lib/Analysis/DataStructure/EquivClassGraphs.cpp
+++ b/lib/Analysis/DataStructure/EquivClassGraphs.cpp
@@ -41,8 +41,6 @@ namespace {
#ifndef NDEBUG
template<typename GT>
static void CheckAllGraphs(Module *M, GT &ECGraphs) {
- DSGraph &GG = ECGraphs.getGlobalsGraph();
-
for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
if (!I->isExternal()) {
DSGraph &G = ECGraphs.getDSGraph(*I);