[PATCH] D115393: [InstrProf][NFC] Refactor Profile kind into a bitset enum.
Ellis Hoag via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 27 10:36:58 PST 2022
ellis added inline comments.
================
Comment at: llvm/include/llvm/ProfileData/InstrProf.h:281-282
+/// An enum describing the attributes of an instrumented profile.
+enum class InstrProfKind {
+ Unknown = 0x0,
----------------
I've been working on a new coverage instrumentation in D116180 that I guess would need to be added this this enum. The plan was to first add function entry coverage, then basic block coverage.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D115393/new/
https://reviews.llvm.org/D115393
More information about the llvm-commits
mailing list