Lines Matching defs:Args
22 const ArgList &Args) {
25 if (Args.hasArg(options::OPT_mfloat_abi_EQ))
27 << Args.getLastArg(options::OPT_mfloat_abi_EQ)->getAsString(Args);
29 if (Arg *A = Args.getLastArg(clang::driver::options::OPT_msoft_float,
37 std::string systemz::getSystemZTargetCPU(const ArgList &Args) {
38 if (const Arg *A = Args.getLastArg(clang::driver::options::OPT_march_EQ)) {
54 void systemz::getSystemZTargetFeatures(const Driver &D, const ArgList &Args,
57 if (Arg *A = Args.getLastArg(options::OPT_mhtm, options::OPT_mno_htm)) {
64 if (Arg *A = Args.getLastArg(options::OPT_mvx, options::OPT_mno_vx)) {
71 systemz::FloatABI FloatABI = systemz::getSystemZFloatABI(D, Args);
75 if (const Arg *A = Args.getLastArg(options::OPT_munaligned_symbols,