We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60de700 commit cb99f0aCopy full SHA for cb99f0a
clang/lib/Driver/Driver.cpp
@@ -6866,7 +6866,8 @@ const ToolChain &Driver::getToolChain(const ArgList &Args,
6866
else if (Target.isWALI())
6867
TC = std::make_unique<toolchains::WebAssembly>(*this, Target, Args);
6868
else if (Target.isLFI())
6869
- TC = std::make_unique<toolchains::LFILinuxToolChain>(*this, Target, Args);
+ TC = std::make_unique<toolchains::LFILinuxToolChain>(*this, Target,
6870
+ Args);
6871
else
6872
TC = std::make_unique<toolchains::Linux>(*this, Target, Args);
6873
break;
0 commit comments