Home
last modified time | relevance | path

Searched refs:ModulesCodegen (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriterDecl.cpp960 bool ModulesCodegen = false; in VisitVarDecl() local
968 ModulesCodegen = in VisitVarDecl()
972 Record.push_back(ModulesCodegen); in VisitVarDecl()
973 if (ModulesCodegen) in VisitVarDecl()
2324 bool ModulesCodegen = false; in AddFunctionDefinition() local
2333 ModulesCodegen = *Linkage == GVA_StrongExternal; in AddFunctionDefinition()
2335 if (Writer->Context->getLangOpts().ModulesCodegen) { in AddFunctionDefinition()
2341 ModulesCodegen = *Linkage != GVA_Internal; in AddFunctionDefinition()
2345 Record->push_back(ModulesCodegen); in AddFunctionDefinition()
2346 if (ModulesCodegen) in AddFunctionDefinition()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DLangOptions.def224 BENIGN_LANGOPT(ModulesCodegen , 1, 0, "Modules code generation")
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInvocation.cpp2600 Opts.ModulesCodegen = Args.hasArg(OPT_fmodules_codegen); in ParseLangArgs()