[PATCH] D123591: [LLD][COFF] Add support for /noimplib
Nikita Popov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 13 01:47:11 PDT 2022
nikic added inline comments.
================
Comment at: lld/COFF/Driver.cpp:1677
+ if (auto *arg = args.getLastArg(OPT_noimplib))
+ config->noimplib = true;
+
----------------
nit: Variable `arg` is unused and causes a warning. Should this be using `arg->getValue()`?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D123591/new/
https://reviews.llvm.org/D123591
More information about the llvm-commits
mailing list