[llvm] [memprof] Undrift MemProf profile even when some frames are missing (PR #120500)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 20 14:25:38 PST 2024
================
@@ -828,7 +828,8 @@ struct AllocMatchInfo {
};
DenseMap<uint64_t, SmallVector<CallEdgeTy, 0>>
-memprof::extractCallsFromIR(Module &M, const TargetLibraryInfo &TLI) {
+memprof::extractCallsFromIR(Module &M, const TargetLibraryInfo &TLI,
+ function_ref<bool(uint64_t)> IsPresentInProfile) {
----------------
kazutakahirata wrote:
Yes. Fixed.
https://github.com/llvm/llvm-project/pull/120500
More information about the llvm-commits
mailing list