reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
170 E->setValueKind(VK_RValue); 171 if (isa<CompoundLiteralExpr>(E)) { 173 } else if (ParenExpr *PE = dyn_cast<ParenExpr>(E)) { 174 E = PE->getSubExpr(); 175 } else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) { 177 E = UO->getSubExpr(); 178 } else if (GenericSelectionExpr *GSE = dyn_cast<GenericSelectionExpr>(E)) { 179 E = GSE->getResultExpr(); 180 } else if (ChooseExpr *CE = dyn_cast<ChooseExpr>(E)) { 181 E = CE->getChosenSubExpr();