Skip to content

Commit 9ac55af

Browse files
committed
C++: One more join order fix
1 parent b3e598c commit 9ac55af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ private predicate simpleOperandLocalFlowStep(Instruction iFrom, Operand opTo) {
656656
exists(LoadInstruction load |
657657
load.getSourceValueOperand() = opTo and
658658
opTo.getAnyDef() = iFrom and
659-
isSingleFieldClass(iFrom.getResultType(), opTo)
659+
isSingleFieldClass(pragma[only_bind_out](pragma[only_bind_out](iFrom).getResultType()), opTo)
660660
)
661661
}
662662

0 commit comments

Comments
 (0)