[lld] [lld][COFF] Add /linkreprofullpathrsp flag (PR #165449)
Alexandre Ganea via llvm-commits
llvm-commits at lists.llvm.org
Wed Dec 17 09:33:28 PST 2025
================
@@ -88,11 +88,13 @@ class LinkerDriver {
void enqueueArchiveMember(const Archive::Child &c, const Archive::Symbol &sym,
StringRef parentName);
- void enqueuePDB(StringRef Path) { enqueuePath(Path, false, false); }
+ enum class InputType { Direct, DefaultLib, WholeArchive };
----------------
aganea wrote:
Applogies in advance for being picky. But I'd to be sure the code will be well understood by future mainteners. I think "InputType" should be something like "InputOrigin" or "provenance" or something along these lines. We're trying to capture how the input was used in the first place, not its type per se. Along those lines I think "Plain" should be "CommandLine".
https://github.com/llvm/llvm-project/pull/165449
More information about the llvm-commits
mailing list