We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a71775 commit 2df39d8Copy full SHA for 2df39d8
1 file changed
lib/reverseanalyzer.cpp
@@ -280,7 +280,9 @@ namespace {
280
break;
281
if (!updateRecursive(assignTop->astOperand2()))
282
283
- tok = previousBeforeAstLeftmostLeaf(assignTop)->next();
+ tok = assignTop;
284
+ while (tok->astOperand1())
285
+ tok = tok->astOperand1();
286
continue;
287
}
288
if (tok->str() == ")" && !isUnevaluated(tok)) {
0 commit comments