Skip to content

Commit 0fe81d5

Browse files
committed
Address code review comment
1 parent d863671 commit 0fe81d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/CIR/CodeGen/CIRGenExpr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,7 @@ LValue CIRGenFunction::emitUnaryOpLValue(const UnaryOperator *e) {
913913
assert(e->isPrefix() && "Prefix operator in unexpected state!");
914914

915915
if (e->getType()->isAnyComplexType()) {
916-
emitComplexPrePostIncDec(e, lv, kind, true /*isPre=*/);
916+
emitComplexPrePostIncDec(e, lv, kind, /*isPre=*/true);
917917
} else {
918918
emitScalarPrePostIncDec(e, lv, kind, /*isPre=*/true);
919919
}

0 commit comments

Comments
 (0)