forked from OSchip/llvm-project
[PGO] Remove dead member variable InstrumentFuncEntry (NFC)
This patch removes InstrumentFuncEntry as it is dead. The constructor of FuncPGOInstrumentation passes InstrumentFuncEntry to MST, but it doesn't make a local copy as a member variable.
This commit is contained in:
parent
3285ee143b
commit
5d24935f22
|
@ -563,9 +563,6 @@ private:
|
|||
// Is this is context-sensitive instrumentation.
|
||||
bool IsCS;
|
||||
|
||||
// If we instrument function entry BB by default.
|
||||
bool InstrumentFuncEntry;
|
||||
|
||||
// A map that stores the Comdat group in function F.
|
||||
std::unordered_multimap<Comdat *, GlobalValue *> &ComdatMembers;
|
||||
|
||||
|
|
Loading…
Reference in New Issue