File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -26,12 +26,17 @@ predicate ignoreOperand(Operand operand) {
26
26
predicate ignoreInstruction ( Instruction instr ) {
27
27
DataFlowImplCommon:: forceCachingInSameStage ( ) and
28
28
(
29
+ instr instanceof CallSideEffectInstruction or
30
+ instr instanceof CallReadSideEffectInstruction or
31
+ instr instanceof ExitFunctionInstruction or
32
+ instr instanceof EnterFunctionInstruction or
29
33
instr instanceof WriteSideEffectInstruction or
30
34
instr instanceof PhiInstruction or
31
35
instr instanceof ReadSideEffectInstruction or
32
36
instr instanceof ChiInstruction or
33
37
instr instanceof InitializeIndirectionInstruction or
34
38
instr instanceof AliasedDefinitionInstruction or
39
+ instr instanceof AliasedUseInstruction or
35
40
instr instanceof InitializeNonLocalInstruction or
36
41
instr instanceof ReturnIndirectionInstruction
37
42
)
You can’t perform that action at this time.
0 commit comments