[llvm] r301252 - ProfileData: clean up some stale declarations (NFC)
Saleem Abdulrasool via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 24 14:05:05 PDT 2017
Author: compnerd
Date: Mon Apr 24 16:05:05 2017
New Revision: 301252
URL: http://llvm.org/viewvc/llvm-project?rev=301252&view=rev
Log:
ProfileData: clean up some stale declarations (NFC)
These were removed in SVN r300381. Remove the declarations.
Modified:
llvm/trunk/include/llvm/ProfileData/InstrProf.h
Modified: llvm/trunk/include/llvm/ProfileData/InstrProf.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ProfileData/InstrProf.h?rev=301252&r1=301251&r2=301252&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ProfileData/InstrProf.h (original)
+++ llvm/trunk/include/llvm/ProfileData/InstrProf.h Mon Apr 24 16:05:05 2017
@@ -79,14 +79,6 @@ inline StringRef getInstrProfValueRangeP
return INSTR_PROF_VALUE_RANGE_PROF_FUNC_STR;
}
-/// Return the name of the section containing function coverage mapping
-/// data.
-std::string getInstrProfCoverageSectionName(const Module *M = nullptr);
-/// Similar to the above, but used by host tool (e.g, coverage) which has
-/// object format information. The section name returned is not prefixed
-/// with segment name.
-std::string getInstrProfCoverageSectionNameInObject(bool isCoff);
-
/// Return the name prefix of variables containing instrumented function names.
inline StringRef getInstrProfNameVarPrefix() { return "__profn_"; }
More information about the llvm-commits
mailing list