[clang] [flang] [clang][driver] Special care for -l flags in config files (PR #117573)
Fangrui Song via cfe-commits
cfe-commits at lists.llvm.org
Fri Nov 29 19:16:54 PST 2024
================
@@ -1062,6 +1062,16 @@ bool Driver::readConfigFile(StringRef FileName,
for (Arg *A : *NewOptions)
A->claim();
+ std::unique_ptr<InputArgList> NewLinkerIns = std::make_unique<InputArgList>();
----------------
MaskRay wrote:
`auto` since RHS makes the type clear.
https://github.com/llvm/llvm-project/pull/117573
More information about the cfe-commits
mailing list