summaryrefslogtreecommitdiffstats
path: root/llvm/include/llvm/IR/ModuleSummaryIndex.h
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/include/llvm/IR/ModuleSummaryIndex.h')
-rw-r--r--llvm/include/llvm/IR/ModuleSummaryIndex.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/llvm/include/llvm/IR/ModuleSummaryIndex.h b/llvm/include/llvm/IR/ModuleSummaryIndex.h
index f907267a038..14608d42a1d 100644
--- a/llvm/include/llvm/IR/ModuleSummaryIndex.h
+++ b/llvm/include/llvm/IR/ModuleSummaryIndex.h
@@ -358,16 +358,6 @@ private:
ModulePathStringTableTy ModulePathStringTable;
public:
- ModuleSummaryIndex() = default;
- ModuleSummaryIndex(ModuleSummaryIndex &&Arg)
- : GlobalValueMap(std::move(Arg.GlobalValueMap)),
- ModulePathStringTable(std::move(Arg.ModulePathStringTable)) {}
- ModuleSummaryIndex &operator=(ModuleSummaryIndex &&RHS) {
- GlobalValueMap = std::move(RHS.GlobalValueMap);
- ModulePathStringTable = std::move(RHS.ModulePathStringTable);
- return *this;
- }
-
gvsummary_iterator begin() { return GlobalValueMap.begin(); }
const_gvsummary_iterator begin() const { return GlobalValueMap.begin(); }
gvsummary_iterator end() { return GlobalValueMap.end(); }
OpenPOWER on IntegriCloud