Searched refs:ICEDiag (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprConstant.cpp | 16348 struct ICEDiag { struct 16352 ICEDiag(ICEKind IK, SourceLocation l) : Kind(IK), Loc(l) {} in ICEDiag() function 16357 static ICEDiag NoDiag() { return ICEDiag(IK_ICE, SourceLocation()); } in NoDiag() 16359 static ICEDiag Worst(ICEDiag A, ICEDiag B) { return A.Kind >= B.Kind ? A : B; } in Worst() 16361 static ICEDiag CheckEvalInICE(const Expr* E, const ASTContext &Ctx) { in CheckEvalInICE() 16369 return ICEDiag(IK_NotICE, E->getBeginLoc()); in CheckEvalInICE() 16374 static ICEDiag CheckICE(const Expr* E, const ASTContext &Ctx) { in CheckICE() 16377 return ICEDiag(IK_NotICE, E->getBeginLoc()); in CheckICE() 16468 return ICEDiag(IK_NotICE, E->getBeginLoc()); in CheckICE() 16478 return ICEDiag(IK_NotICE, E->getBeginLoc()); in CheckICE() [all …]
|