Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMinGW.cpp180 StringRef GuardArgs = A->getValue(); in ConstructJob() local
181 if (GuardArgs == "none") in ConstructJob()
183 else if (GuardArgs == "cf" || GuardArgs == "cf-nochecks") in ConstructJob()
187 << A->getSpelling() << GuardArgs; in ConstructJob()
714 StringRef GuardArgs = A->getValue(); in addClangTargetOptions() local
715 if (GuardArgs == "none") { in addClangTargetOptions()
717 } else if (GuardArgs == "cf") { in addClangTargetOptions()
720 } else if (GuardArgs == "cf-nochecks") { in addClangTargetOptions()
725 << A->getSpelling() << GuardArgs; in addClangTargetOptions()
H A DMSVC.cpp236 StringRef GuardArgs = A->getValue(); in ConstructJob() local
237 if (GuardArgs.equals_insensitive("cf") || in ConstructJob()
238 GuardArgs.equals_insensitive("cf,nochecks")) { in ConstructJob()
241 } else if (GuardArgs.equals_insensitive("cf-")) { in ConstructJob()
243 } else if (GuardArgs.equals_insensitive("ehcont")) { in ConstructJob()
245 } else if (GuardArgs.equals_insensitive("ehcont-")) { in ConstructJob()
H A DClang.cpp8383 StringRef GuardArgs = A->getValue(); in AddClangCLArgs() local
8386 if (GuardArgs.equals_insensitive("cf")) { in AddClangCLArgs()
8389 } else if (GuardArgs.equals_insensitive("cf,nochecks")) { in AddClangCLArgs()
8392 } else if (GuardArgs.equals_insensitive("ehcont")) { in AddClangCLArgs()
8395 } else if (GuardArgs.equals_insensitive("cf-") || in AddClangCLArgs()
8396 GuardArgs.equals_insensitive("ehcont-")) { in AddClangCLArgs()
8399 D.Diag(diag::err_drv_invalid_value) << A->getSpelling() << GuardArgs; in AddClangCLArgs()