reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
2485 if (B->isLogicalOp()) 2486 return VisitLogicalOperator(B); 2488 if (B->getOpcode() == BO_Comma) { // , 2490 appendStmt(Block, B); 2491 addStmt(B->getRHS()); 2492 return addStmt(B->getLHS()); 2495 if (B->isAssignmentOp()) { 2496 if (asc.alwaysAdd(*this, B)) { 2498 appendStmt(Block, B); 2500 Visit(B->getLHS()); 2501 return Visit(B->getRHS()); 2504 if (asc.alwaysAdd(*this, B)) { 2506 appendStmt(Block, B); 2509 if (B->isEqualityOp() || B->isRelationalOp()) 2509 if (B->isEqualityOp() || B->isRelationalOp()) 2510 tryEvaluateBool(B); 2512 CFGBlock *RBlock = Visit(B->getRHS()); 2513 CFGBlock *LBlock = Visit(B->getLHS());