diff options
| author | David Blaikie <dblaikie@gmail.com> | 2015-08-05 21:16:46 +0000 |
|---|---|---|
| committer | David Blaikie <dblaikie@gmail.com> | 2015-08-05 21:16:46 +0000 |
| commit | c0294037dcc804ab91af5a6cef1ca5847895c8dd (patch) | |
| tree | d0c582becfd630de26c2856a2888ad69cfacc69a /llvm | |
| parent | 7282dd774f9f01693ef71ef633730e556db3398a (diff) | |
| download | bcm5719-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.h | 4 |
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; |

