HomeSort by: relevance | last modified time | path
    Searched defs:ProfileUseArg (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
CommonArgs.cpp 588 auto *ProfileUseArg = getLastProfileUseArg(Args);
601 } else if (ProfileUseArg) {
603 ProfileUseArg->getNumValues() == 0 ? "" : ProfileUseArg->getValue());
1084 auto *ProfileUseArg = Args.getLastArg(
1089 if (ProfileUseArg &&
1090 ProfileUseArg->getOption().matches(options::OPT_fno_profile_instr_use))
1091 ProfileUseArg = nullptr;
1093 return ProfileUseArg;
Clang.cpp 788 auto *ProfileUseArg = getLastProfileUseArg(Args);
790 if (PGOGenerateArg && ProfileUseArg)
792 << ProfileUseArg->getSpelling() << PGOGenerateArg->getSpelling();
794 if (ProfileGenerateArg && ProfileUseArg)
796 << ProfileGenerateArg->getSpelling() << ProfileUseArg->getSpelling();
845 if (ProfileUseArg) {
846 if (ProfileUseArg->getOption().matches(options::OPT_fprofile_instr_use_EQ))
848 Twine("-fprofile-instrument-use-path=") + ProfileUseArg->getValue()));
849 else if ((ProfileUseArg->getOption().matches(
851 ProfileUseArg->getOption().matches
    [all...]

Completed in 17 milliseconds