[lld] [lld][ELF] Add --why-live flag (inspired by Mach-O) (PR #127112)

Fangrui Song via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 15 17:14:57 PST 2025


================
@@ -42,6 +44,10 @@ using namespace lld;
 using namespace lld::elf;
 
 namespace {
+
+// Something that can be the most proximate reason that something else is alive.
+typedef std::variant<InputSectionBase *, Symbol *> LiveReason;
----------------
MaskRay wrote:

prefer `using` for C++

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


More information about the llvm-commits mailing list