[Transforms/Utils] Remove redundant declaration computeSyntheticCounts (NFC)
authorKazu Hirata <kazu@google.com>
Fri, 24 Sep 2021 15:08:57 +0000 (08:08 -0700)
committerKazu Hirata <kazu@google.com>
Fri, 24 Sep 2021 15:08:58 +0000 (08:08 -0700)
llvm/include/llvm/LTO/SummaryBasedOptimizations.h
llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h

index 6697c82..508ab25 100644 (file)
@@ -10,6 +10,8 @@
 #define LLVM_LTO_SUMMARYBASEDOPTIMIZATIONS_H
 namespace llvm {
 class ModuleSummaryIndex;
+
+/// Compute synthetic function entry counts.
 void computeSyntheticCounts(ModuleSummaryIndex &Index);
 
 } // namespace llvm
index 024d84a..749b7b2 100644 (file)
@@ -130,9 +130,6 @@ bool renameModuleForThinLTO(
     bool ClearDSOLocalOnDeclarations,
     SetVector<GlobalValue *> *GlobalsToImport = nullptr);
 
-/// Compute synthetic function entry counts.
-void computeSyntheticCounts(ModuleSummaryIndex &Index);
-
 } // End llvm namespace
 
 #endif