summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-04-24 08:55:36 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-04-24 08:55:36 +0000
commit9e65c463453fa777efadba252c212076686fabba (patch)
tree965b8231b5f963c4c55aa83452798da169177c46 /include
parent25209ab48679af86fc6b878e9a9a4308477bcd0b (diff)
downloadllvm-9e65c463453fa777efadba252c212076686fabba.tar.gz
llvm-9e65c463453fa777efadba252c212076686fabba.tar.bz2
llvm-9e65c463453fa777efadba252c212076686fabba.tar.xz
[LCG] We don't actually need a set in each SCC to track the nodes. We
can use the node -> SCC mapping in the top-level graph to test this on the rare occasions we need it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207090 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Analysis/LazyCallGraph.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/Analysis/LazyCallGraph.h b/include/llvm/Analysis/LazyCallGraph.h
index 24607b293f..ea65cbac1d 100644
--- a/include/llvm/Analysis/LazyCallGraph.h
+++ b/include/llvm/Analysis/LazyCallGraph.h
@@ -217,7 +217,6 @@ public:
SmallSetVector<SCC *, 1> ParentSCCs;
SmallVector<Node *, 1> Nodes;
- SmallPtrSet<Function *, 1> NodeSet;
SCC() {}