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

/external/clang/lib/AST/
H A DExprConstant.cpp8979 // ICEDiag contains an ICEKind indicating whether the expression is an ICE,
9000 struct ICEDiag { struct in namespace:__anon1176
9004 ICEDiag(ICEKind IK, SourceLocation l) : Kind(IK), Loc(l) {} function in struct:__anon1176::ICEDiag
9009 static ICEDiag NoDiag() { return ICEDiag(IK_ICE, SourceLocation()); }
9011 static ICEDiag Worst(ICEDiag A, ICEDiag B) { return A.Kind >= B.Kind ? A : B; }
9013 static ICEDiag CheckEvalInICE(const Expr* E, const ASTContext &Ctx) {
9017 return ICEDiag(IK_NotIC
[all...]

Completed in 96 milliseconds