Home | History | Annotate | Download | only in Sema

Lines Matching refs:LHSVal

289 Sema::ActOnCaseStmt(SourceLocation CaseLoc, Expr *LHSVal,
292 assert((LHSVal != 0) && "missing expression in case statement");
302 if (!LHSVal->isTypeDependent() && !LHSVal->isValueDependent()) {
303 LHSVal = VerifyIntegerConstantExpression(LHSVal).take();
304 if (!LHSVal)
316 CaseStmt *CS = new (Context) CaseStmt(LHSVal, RHSVal, CaseLoc, DotDotDotLoc,