Skip to content

Commit b954845

Browse files
committed
C++: Ignore the new 'InitializeGroup' instruction in dataflow.
1 parent 6ef9dba commit b954845

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/SsaInternalsCommon.qll

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ predicate ignoreInstruction(Instruction instr) {
4040
instr instanceof AliasedDefinitionInstruction or
4141
instr instanceof AliasedUseInstruction or
4242
instr instanceof InitializeNonLocalInstruction or
43-
instr instanceof ReturnIndirectionInstruction
43+
instr instanceof ReturnIndirectionInstruction or
44+
instr instanceof InitializeGroupInstruction
4445
)
4546
}
4647

0 commit comments

Comments
 (0)