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 f3a5ce5 commit 8630630Copy full SHA for 8630630
cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowPrivate.qll
@@ -1011,7 +1011,9 @@ predicate nodeIsHidden(Node n) {
1011
1012
predicate neverSkipInPathGraph(Node n) {
1013
// Always show the right-hand side of assignments in the path graph
1014
- nodeHasOperand(n, any(StoreInstruction store).getSourceValueOperand(), _)
+ exists(n.asDefinition())
1015
+ or
1016
+ exists(n.asIndirectDefinition())
1017
}
1018
1019
class LambdaCallKind = Unit;
0 commit comments