Home
last modified time | relevance | path

Searched refs:LastStmt (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/CodeGen/
DCGStmt.cpp219 const Stmt *LastStmt = S.body_back(); in EmitCompoundStmtWithoutScope() local
220 while (const LabelStmt *LS = dyn_cast<LabelStmt>(LastStmt)) { in EmitCompoundStmtWithoutScope()
222 LastStmt = LS->getSubStmt(); in EmitCompoundStmtWithoutScope()
227 RV = EmitAnyExpr(cast<Expr>(LastStmt), AggSlot); in EmitCompoundStmtWithoutScope()
/external/clang/lib/Sema/
DAnalysisBasedWarnings.cpp787 const Stmt *LastStmt = getLastStmt(*P); in checkFallThroughIntoBlock() local
788 if (const AttributedStmt *AS = asFallThroughAttr(LastStmt)) { in checkFallThroughIntoBlock()
794 if (!LastStmt) { // This block contains no executable statements. in checkFallThroughIntoBlock()
DSemaExpr.cpp9167 Stmt *LastStmt = Compound->body_back(); in ActOnStmtExpr() local
9170 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) { in ActOnStmtExpr()
9172 LastStmt = Label->getSubStmt(); in ActOnStmtExpr()
9175 if (Expr *LastE = dyn_cast<Expr>(LastStmt)) { in ActOnStmtExpr()