Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaExprCXX.cpp6182 ExceptionSpecificationType EST2 = ESI2.Type; in mergeExceptionSpecs() local
6186 if (EST2 == EST_None) return ESI2; in mergeExceptionSpecs()
6188 if (EST2 == EST_MSAny) return ESI2; in mergeExceptionSpecs()
6190 if (EST2 == EST_NoexceptFalse) return ESI2; in mergeExceptionSpecs()
6194 if (EST2 == EST_NoThrow) return ESI1; in mergeExceptionSpecs()
6196 if (EST2 == EST_DynamicNone) return ESI1; in mergeExceptionSpecs()
6198 if (EST2 == EST_BasicNoexcept) return ESI1; in mergeExceptionSpecs()
6200 if (EST2 == EST_NoexceptTrue) return ESI1; in mergeExceptionSpecs()
6207 if (EST1 == EST_DependentNoexcept || EST2 == EST_DependentNoexcept) { in mergeExceptionSpecs()
6229 assert(EST2 == EST_Dynamic && "other cases should already be handled"); in mergeExceptionSpecs()