We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09763c1 commit be8886fCopy full SHA for be8886f
clang/lib/CIR/CodeGen/CIRGenExpr.cpp
@@ -955,7 +955,7 @@ void CIRGenFunction::emitIgnoredExpr(const Expr *e) {
955
static std::optional<LValue> handleConditionalOperatorLValueSimpleCase(
956
CIRGenFunction &cgf, const AbstractConditionalOperator *e) {
957
const Expr *condExpr = e->getCond();
958
- bool condExprBool;
+ bool condExprBool = false;
959
if (cgf.constantFoldsToSimpleInteger(condExpr, condExprBool)) {
960
const Expr *live = e->getTrueExpr(), *dead = e->getFalseExpr();
961
if (!condExprBool)
0 commit comments