[llvm-branch-commits] [llvm] [BOLT] Match functions with name similarity (PR #95884)
Amir Ayupov via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Jul 2 18:55:01 PDT 2024
================
@@ -342,6 +350,107 @@ bool YAMLProfileReader::mayHaveProfileData(const BinaryFunction &BF) {
return false;
}
+uint64_t YAMLProfileReader::matchWithNameSimilarity(BinaryContext &BC) {
+ uint64_t MatchedWithNameSimilarity = 0;
+ ItaniumPartialDemangler ItaniumPartialDemangler;
----------------
aaupov wrote:
```suggestion
ItaniumPartialDemangler Demangler;
```
https://github.com/llvm/llvm-project/pull/95884
More information about the llvm-branch-commits
mailing list