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

Co-authored-by: Jeroen Ketema <93738568+jketema@users.noreply.github.com>
This commit is contained in:
Mathias Vorreiter Pedersen
2025-01-27 10:55:56 +00:00
committed by GitHub
parent ad80b36074
commit 67a905141c

View File

@@ -42,7 +42,7 @@ predicate ignoreInstruction(Instruction instr) {
instr instanceof InitializeNonLocalInstruction or
instr instanceof ReturnIndirectionInstruction or
instr instanceof UninitializedGroupInstruction or
// We exclude instruction belonging to functions that have a summary.
// We exclude instructions belonging to functions that have a summary.
instr.getEnclosingFunction() = any(SummarizedCallable sc).getUnderlyingCallable()
)
}