Home
last modified time | relevance | path

Searched refs:LaxVectorConversionKind (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h310 enum class LaxVectorConversionKind { enum
H A DLangOptions.def134 ENUM_LANGOPT(LaxVectorConversions, LaxVectorConversionKind, 2,
135 LaxVectorConversionKind::All, "lax vector conversions")
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp9936 const LangOptions::LaxVectorConversionKind LVCKind = in areLaxCompatibleSveTypes()
9956 if (LVCKind == LangOptions::LaxVectorConversionKind::All) in areLaxCompatibleSveTypes()
9961 if (LVCKind == LangOptions::LaxVectorConversionKind::Integer) in areLaxCompatibleSveTypes()
10038 const LangOptions::LaxVectorConversionKind LVCKind = in areLaxCompatibleRVVTypes()
10047 if (LVCKind == LangOptions::LaxVectorConversionKind::All) in areLaxCompatibleRVVTypes()
10052 if (LVCKind == LangOptions::LaxVectorConversionKind::Integer) in areLaxCompatibleRVVTypes()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td2933 NormalizedValues<["LangOptions::LaxVectorConversionKind::None",
2934 "LangOptions::LaxVectorConversionKind::Integer",
2935 "LangOptions::LaxVectorConversionKind::All"]>,
2938 " ? LangOptions::LaxVectorConversionKind::None" #
2939 " : LangOptions::LaxVectorConversionKind::All">;
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp7530 case LangOptions::LaxVectorConversionKind::None: in isLaxVectorConversion()
7533 case LangOptions::LaxVectorConversionKind::Integer: in isLaxVectorConversion()
7547 case LangOptions::LaxVectorConversionKind::All: in isLaxVectorConversion()