[lld] [lld-macho] Use Symbols as branch target for safe_thunks ICF (PR #126835)

Ellis Hoag via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 12 10:45:32 PST 2025


================
@@ -27,6 +27,8 @@ using namespace lld;
 using namespace lld::macho;
 
 static constexpr bool verboseDiagnostics = false;
+// This counter is used to generate unique thunk names.
+static uint64_t icfThunkCounter = 0;
----------------
ellishg wrote:

Could we move this into `getThunkTargetSymbol()`?

https://github.com/llvm/llvm-project/pull/126835


More information about the llvm-commits mailing list