Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCGExprScalar.cpp3051 bool LHSCondVal; in VisitBinLAnd() local
3052 if (CGF.ConstantFoldsToSimpleInteger(E->getLHS(), LHSCondVal)) { in VisitBinLAnd()
3053 if (LHSCondVal) { // If we have 1 && X, just emit X. in VisitBinLAnd()
3129 bool LHSCondVal; in VisitBinLOr() local
3130 if (CGF.ConstantFoldsToSimpleInteger(E->getLHS(), LHSCondVal)) { in VisitBinLOr()
3131 if (!LHSCondVal) { // If we have 0 || X, just emit X. in VisitBinLOr()