Searched refs:IsArg (Results 1 – 2 of 2) sorted by relevance
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
| H A D | DeadArgumentElimination.h | 47 bool IsArg; member 49 RetOrArg(const Function *F, unsigned Idx, bool IsArg) in RetOrArg() 50 : F(F), Idx(Idx), IsArg(IsArg) {} in RetOrArg() 54 return std::tie(F, Idx, IsArg) < std::tie(O.F, O.Idx, O.IsArg); 59 return F == O.F && Idx == O.Idx && IsArg == O.IsArg; 63 return (Twine(IsArg ? "Argument #" : "Return value #") + Twine(Idx) + in getDescription()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Support/ |
| H A D | CommandLine.cpp | 1676 auto ReportUnknownArgument = [&](bool IsArg, in ParseCommandLineOptions() 1679 << (IsArg ? "command line argument" : "subcommand") << " '" in ParseCommandLineOptions() 1686 if (IsArg) in ParseCommandLineOptions() 1694 ReportUnknownArgument(/*IsArg=*/true, NearestHandlerString); in ParseCommandLineOptions() 1696 ReportUnknownArgument(/*IsArg=*/false, NearestSubCommandString); in ParseCommandLineOptions() 1677 __anone22813951102(bool IsArg, StringRef NearestArgumentName) ParseCommandLineOptions() argument
|