Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp4280 Arg *YcArg = Args.getLastArg(options::OPT__SLASH_Yc); in handleArguments() local
4282 if (YcArg && YuArg && strcmp(YcArg->getValue(), YuArg->getValue()) != 0) { in handleArguments()
4286 YcArg = YuArg = nullptr; in handleArguments()
4288 if (YcArg && Inputs.size() > 1) { in handleArguments()
4291 YcArg = nullptr; in handleArguments()
4336 YcArg = YuArg = nullptr; in handleArguments()
4394 if (YcArg) { in handleArguments()
6712 if (Arg *YcArg = C.getArgs().getLastArg(options::OPT__SLASH_Yc)) in GetClPchPath() local
6713 Output = YcArg->getValue(); in GetClPchPath()
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp976 const Arg *YcArg = Args.getLastArg(options::OPT__SLASH_Yc); in AddPreprocessingOptions() local
978 if (YcArg && JA.getKind() >= Action::PrecompileJobClass && in AddPreprocessingOptions()
987 if (YcArg || YuArg) { in AddPreprocessingOptions()
988 StringRef ThroughHeader = YcArg ? YcArg->getValue() : YuArg->getValue(); in AddPreprocessingOptions()
999 Twine("-pch-through-hdrstop-") + (YcArg ? "create" : "use"))); in AddPreprocessingOptions()