Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExprCXX.cpp6679 ExceptionSpecificationType EST2 = ESI2.Type; in mergeExceptionSpecs() local
6683 if (EST2 == EST_None) return ESI2; in mergeExceptionSpecs()
6685 if (EST2 == EST_MSAny) return ESI2; in mergeExceptionSpecs()
6687 if (EST2 == EST_NoexceptFalse) return ESI2; in mergeExceptionSpecs()
6691 if (EST2 == EST_NoThrow) return ESI1; in mergeExceptionSpecs()
6693 if (EST2 == EST_DynamicNone) return ESI1; in mergeExceptionSpecs()
6695 if (EST2 == EST_BasicNoexcept) return ESI1; in mergeExceptionSpecs()
6697 if (EST2 == EST_NoexceptTrue) return ESI1; in mergeExceptionSpecs()
6704 if (EST1 == EST_DependentNoexcept || EST2 == EST_DependentNoexcept) { in mergeExceptionSpecs()
6726 assert(EST2 == EST_Dynamic && "other cases should already be handled"); in mergeExceptionSpecs()