summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2015-08-05 21:16:46 +0000
committerDavid Blaikie <dblaikie@gmail.com>2015-08-05 21:16:46 +0000
commitc0294037dcc804ab91af5a6cef1ca5847895c8dd (patch)
treed0c582becfd630de26c2856a2888ad69cfacc69a /llvm
parent7282dd774f9f01693ef71ef633730e556db3398a (diff)
downloadbcm5719-llvm-c0294037dcc804ab91af5a6cef1ca5847895c8dd.tar.gz
bcm5719-llvm-c0294037dcc804ab91af5a6cef1ca5847895c8dd.zip
Drop the defaulted CallGraph move ctor, since it's unused and MSVC doesn't support defaulted move ops
llvm-svn: 244135
Diffstat (limited to 'llvm')
-rw-r--r--llvm/include/llvm/Analysis/CallGraph.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/include/llvm/Analysis/CallGraph.h b/llvm/include/llvm/Analysis/CallGraph.h
index 06fed90c7f6..651d1901f3e 100644
--- a/llvm/include/llvm/Analysis/CallGraph.h
+++ b/llvm/include/llvm/Analysis/CallGraph.h
@@ -106,10 +106,6 @@ class CallGraph {
public:
CallGraph(Module &M);
- // Default move ctor is fine, the dtor just does things to CallsExternalNode
- // (if non-null) and the values in the FunctionMap, all of which should be
- // null post-move, so no-op the dtor on the moved-from side.
- CallGraph(CallGraph &&) = default;
~CallGraph();
void print(raw_ostream &OS) const;
OpenPOWER on IntegriCloud