Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Driver/ToolChains/
H A DMinGW.cpp173 StringRef GuardArgs = A->getValue(); in ConstructJob() local
174 if (GuardArgs == "none") in ConstructJob()
176 else if (GuardArgs == "cf" || GuardArgs == "cf-nochecks") in ConstructJob()
180 << A->getSpelling() << GuardArgs; in ConstructJob()
690 StringRef GuardArgs = A->getValue(); in addClangTargetOptions() local
691 if (GuardArgs == "none") { in addClangTargetOptions()
693 } else if (GuardArgs == "cf") { in addClangTargetOptions()
696 } else if (GuardArgs == "cf-nochecks") { in addClangTargetOptions()
701 << 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.cpp7872 StringRef GuardArgs = A->getValue(); in AddClangCLArgs() local
7875 if (GuardArgs.equals_insensitive("cf")) { in AddClangCLArgs()
7878 } else if (GuardArgs.equals_insensitive("cf,nochecks")) { in AddClangCLArgs()
7881 } else if (GuardArgs.equals_insensitive("ehcont")) { in AddClangCLArgs()
7884 } else if (GuardArgs.equals_insensitive("cf-") || in AddClangCLArgs()
7885 GuardArgs.equals_insensitive("ehcont-")) { in AddClangCLArgs()
7888 D.Diag(diag::err_drv_invalid_value) << A->getSpelling() << GuardArgs; in AddClangCLArgs()