[llvm] r206455 - [LCG] Remove a dead declaration. This stopped being used when I switched

Chandler Carruth chandlerc at gmail.com
Thu Apr 17 02:41:54 PDT 2014


Author: chandlerc
Date: Thu Apr 17 04:41:54 2014
New Revision: 206455

URL: http://llvm.org/viewvc/llvm-project?rev=206455&view=rev
Log:
[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.

Modified:
    llvm/trunk/include/llvm/Analysis/LazyCallGraph.h

Modified: llvm/trunk/include/llvm/Analysis/LazyCallGraph.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/LazyCallGraph.h?rev=206455&r1=206454&r2=206455&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/LazyCallGraph.h (original)
+++ llvm/trunk/include/llvm/Analysis/LazyCallGraph.h Thu Apr 17 04:41:54 2014
@@ -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;
 





More information about the llvm-commits mailing list