Home
last modified time | relevance | path

Searched refs:CfgOptions (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Driver/
H A DDriver.h241 std::unique_ptr<llvm::opt::InputArgList> CfgOptions; variable
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/
H A DDriver.cpp848 CfgOptions = std::make_unique<InputArgList>( in readConfigFile()
851 CfgOptions.reset(); in readConfigFile()
855 if (CfgOptions->hasArg(options::OPT_config)) { in readConfigFile()
856 CfgOptions.reset(); in readConfigFile()
863 for (Arg *A : *CfgOptions) in readConfigFile()
1039 bool HasConfigFile = !ContainsError && (CfgOptions.get() != nullptr); in BuildCompilation()
1042 InputArgList Args = std::move(HasConfigFile ? std::move(*CfgOptions) in BuildCompilation()