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

/external/clang/lib/Sema/
H A DSemaChecking.cpp3439 Expr *stackE = 0; local
3446 stackE = EvalAddr(RetValExp, refVars, /*ParentDecl=*/0);
3448 stackE = EvalVal(RetValExp, refVars, /*ParentDecl=*/0);
3451 if (stackE == 0)
3457 diagLoc = stackE->getLocStart();
3458 diagRange = stackE->getSourceRange();
3460 // We followed through a reference variable. 'stackE' contains the
3468 if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(stackE)) { //address of local var.
3472 } else if (isa<BlockExpr>(stackE)) { // local block.
3474 } else if (isa<AddrLabelExpr>(stackE)) { // addres
[all...]

Completed in 126 milliseconds