Home | History | Annotate | Download | only in Sema

Lines Matching defs:ICE

5930   // array even when the size isn't an ICE.  This is necessary
11543 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
11544 if (ICE->getCastKind() == CK_NoOp)
11545 ArgExpr = ICE->getSubExpr();
11617 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
11618 if (ICE->getCastKind() == CK_LValueToRValue)
11619 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr()))
12434 ; // Ok, it's an ICE!
16583 ExprResult ICE = VerifyIntegerConstantExpression(BitWidth, &Value, AllowFold);
16584 if (ICE.isInvalid())
16585 return ICE;
16586 BitWidth = ICE.get();