summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-04-17 09:41:54 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-04-17 09:41:54 +0000
commit83ae2f7c6527ce7fa932ff460c2658e7b207be35 (patch)
tree9aed91980b5a270844ac82a2b80b2c5690dc9f30 /include
parentcad56cba1f6cb6009b03cc9e703ac5eb0cef6e10 (diff)
downloadllvm-83ae2f7c6527ce7fa932ff460c2658e7b207be35.tar.gz
llvm-83ae2f7c6527ce7fa932ff460c2658e7b207be35.tar.bz2
llvm-83ae2f7c6527ce7fa932ff460c2658e7b207be35.tar.xz
[LCG] Remove a dead declaration. This stopped being used when I switched
to a more normal move operation on the graph itself. The definition already got removed, but I missed the declaration. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206455 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Analysis/LazyCallGraph.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/Analysis/LazyCallGraph.h b/include/llvm/Analysis/LazyCallGraph.h
index faf9348f71..d22f2cf8db 100644
--- a/include/llvm/Analysis/LazyCallGraph.h
+++ b/include/llvm/Analysis/LazyCallGraph.h
@@ -186,9 +186,6 @@ public:
/// \brief Constructor used when copying a node from one graph to another.
Node(LazyCallGraph &G, const Node &OtherN);
- /// \brief Constructor used when moving a node from one graph to another.
- Node(LazyCallGraph &G, Node &&OtherN);
-
public:
typedef LazyCallGraph::iterator iterator;