From: Peter Collingbourne Date: Wed, 19 Apr 2017 18:00:05 +0000 (+0000) Subject: IR: Remove some comments that are documenting the obvious. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f7fa9ffd08723924269837e8c48767728c315c5a;p=llvm IR: Remove some comments that are documenting the obvious. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@300724 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/IR/ModuleSummaryIndex.h b/include/llvm/IR/ModuleSummaryIndex.h index 09f6c189700..9c0a4159cad 100644 --- a/include/llvm/IR/ModuleSummaryIndex.h +++ b/include/llvm/IR/ModuleSummaryIndex.h @@ -160,7 +160,6 @@ private: std::vector RefEdgeList; protected: - /// GlobalValueSummary constructor. GlobalValueSummary(SummaryKind K, GVFlags Flags, std::vector Refs) : Kind(K), Flags(Flags), OriginalName(0), RefEdgeList(std::move(Refs)) {} @@ -221,7 +220,6 @@ class AliasSummary : public GlobalValueSummary { GlobalValueSummary *AliaseeSummary; public: - /// Summary constructors. AliasSummary(GVFlags Flags, std::vector Refs) : GlobalValueSummary(AliasKind, Flags, std::move(Refs)) {} @@ -297,7 +295,6 @@ private: std::unique_ptr TIdInfo; public: - /// Summary constructors. FunctionSummary(GVFlags Flags, unsigned NumInsts, std::vector Refs, std::vector CGEdges, std::vector TypeTests, @@ -418,7 +415,6 @@ template <> struct DenseMapInfo { class GlobalVarSummary : public GlobalValueSummary { public: - /// Summary constructors. GlobalVarSummary(GVFlags Flags, std::vector Refs) : GlobalValueSummary(GlobalVarKind, Flags, std::move(Refs)) {}