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.cpp192 StringRef GuardArgs = A->getValue(); in ConstructJob() local
193 if (GuardArgs == "none") in ConstructJob()
195 else if (GuardArgs == "cf" || GuardArgs == "cf-nochecks") in ConstructJob()
199 << A->getSpelling() << GuardArgs; in ConstructJob()
728 StringRef GuardArgs = A->getValue(); in addClangTargetOptions() local
729 if (GuardArgs == "none") { in addClangTargetOptions()
731 } else if (GuardArgs == "cf") { in addClangTargetOptions()
734 } else if (GuardArgs == "cf-nochecks") { in addClangTargetOptions()
739 << A->getSpelling() << GuardArgs; in addClangTargetOptions()
H A DMSVC.cpp241 StringRef GuardArgs = A->getValue(); in ConstructJob() local
242 if (GuardArgs.equals_insensitive("cf") || in ConstructJob()
243 GuardArgs.equals_insensitive("cf,nochecks")) { in ConstructJob()
246 } else if (GuardArgs.equals_insensitive("cf-")) { in ConstructJob()
248 } else if (GuardArgs.equals_insensitive("ehcont")) { in ConstructJob()
250 } else if (GuardArgs.equals_insensitive("ehcont-")) { in ConstructJob()
H A DClang.cpp8436 StringRef GuardArgs = A->getValue(); in AddClangCLArgs() local
8439 if (GuardArgs.equals_insensitive("cf")) { in AddClangCLArgs()
8442 } else if (GuardArgs.equals_insensitive("cf,nochecks")) { in AddClangCLArgs()
8445 } else if (GuardArgs.equals_insensitive("ehcont")) { in AddClangCLArgs()
8448 } else if (GuardArgs.equals_insensitive("cf-") || in AddClangCLArgs()
8449 GuardArgs.equals_insensitive("ehcont-")) { in AddClangCLArgs()
8452 D.Diag(diag::err_drv_invalid_value) << A->getSpelling() << GuardArgs; in AddClangCLArgs()