Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Driver/ToolChains/
H A DMSVC.cpp232 StringRef GuardArgs = A->getValue(); in ConstructJob() local
233 if (GuardArgs.equals_insensitive("cf") || in ConstructJob()
234 GuardArgs.equals_insensitive("cf,nochecks")) { in ConstructJob()
237 } else if (GuardArgs.equals_insensitive("cf-")) { in ConstructJob()
239 } else if (GuardArgs.equals_insensitive("ehcont")) { in ConstructJob()
241 } else if (GuardArgs.equals_insensitive("ehcont-")) { in ConstructJob()
H A DClang.cpp7764 StringRef GuardArgs = A->getValue(); in AddClangCLArgs() local
7767 if (GuardArgs.equals_insensitive("cf")) { in AddClangCLArgs()
7770 } else if (GuardArgs.equals_insensitive("cf,nochecks")) { in AddClangCLArgs()
7773 } else if (GuardArgs.equals_insensitive("ehcont")) { in AddClangCLArgs()
7776 } else if (GuardArgs.equals_insensitive("cf-") || in AddClangCLArgs()
7777 GuardArgs.equals_insensitive("ehcont-")) { in AddClangCLArgs()
7780 D.Diag(diag::err_drv_invalid_value) << A->getSpelling() << GuardArgs; in AddClangCLArgs()