Searched refs:ICEDiag (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/AST/
H A DExprConstant.cpp6431 // ICEDiag contains an ICEKind indicating whether the expression is an ICE,
6452 struct ICEDiag { struct in namespace:__anon3643
6456 ICEDiag(ICEKind IK, SourceLocation l) : Kind(IK), Loc(l) {} function in struct:__anon3643::ICEDiag
6461 static ICEDiag NoDiag() { return ICEDiag(IK_ICE, SourceLocation()); }
6463 static ICEDiag Worst(ICEDiag A, ICEDiag B) { return A.Kind >= B.Kind ? A : B; }
6465 static ICEDiag CheckEvalInICE(const Expr* E, ASTContext &Ctx) {
6469 return ICEDiag(IK_NotIC
[all...]

Completed in 65 milliseconds