[PGO] Remove dead member variable InstrumentFuncEntry (NFC)
authorKazu Hirata <kazu@google.com>
Sun, 20 Dec 2020 17:57:04 +0000 (09:57 -0800)
committerKazu Hirata <kazu@google.com>
Sun, 20 Dec 2020 17:57:05 +0000 (09:57 -0800)
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.

llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp

index 68a313d..17ccf3a 100644 (file)
@@ -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;