Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMinGW.cpp177 StringRef GuardArgs = A->getValue(); in ConstructJob() local
178 if (GuardArgs == "none") in ConstructJob()
180 else if (GuardArgs == "cf" || GuardArgs == "cf-nochecks") in ConstructJob()
184 << A->getSpelling() << GuardArgs; in ConstructJob()
711 StringRef GuardArgs = A->getValue(); in addClangTargetOptions() local
712 if (GuardArgs == "none") { in addClangTargetOptions()
714 } else if (GuardArgs == "cf") { in addClangTargetOptions()
717 } else if (GuardArgs == "cf-nochecks") { in addClangTargetOptions()
722 << A->getSpelling() << GuardArgs; in addClangTargetOptions()
H A DMSVC.cpp231 StringRef GuardArgs = A->getValue(); in ConstructJob() local
232 if (GuardArgs.equals_insensitive("cf") || in ConstructJob()
233 GuardArgs.equals_insensitive("cf,nochecks")) { in ConstructJob()
236 } else if (GuardArgs.equals_insensitive("cf-")) { in ConstructJob()
238 } else if (GuardArgs.equals_insensitive("ehcont")) { in ConstructJob()
240 } else if (GuardArgs.equals_insensitive("ehcont-")) { in ConstructJob()
H A DClang.cpp8160 StringRef GuardArgs = A->getValue(); in AddClangCLArgs() local
8163 if (GuardArgs.equals_insensitive("cf")) { in AddClangCLArgs()
8166 } else if (GuardArgs.equals_insensitive("cf,nochecks")) { in AddClangCLArgs()
8169 } else if (GuardArgs.equals_insensitive("ehcont")) { in AddClangCLArgs()
8172 } else if (GuardArgs.equals_insensitive("cf-") || in AddClangCLArgs()
8173 GuardArgs.equals_insensitive("ehcont-")) { in AddClangCLArgs()
8176 D.Diag(diag::err_drv_invalid_value) << A->getSpelling() << GuardArgs; in AddClangCLArgs()