File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -632,20 +632,20 @@ predicate jumpStep(Node n1, Node n2) {
632
632
v = globalUse .getVariable ( ) and
633
633
n1 .( FinalGlobalValue ) .getGlobalUse ( ) = globalUse
634
634
|
635
- globalUse .getIndirectionIndex ( ) = 1 and
635
+ globalUse .getIndirection ( ) = 1 and
636
636
v = n2 .asVariable ( )
637
637
or
638
- v = n2 .asIndirectVariable ( globalUse .getIndirectionIndex ( ) )
638
+ v = n2 .asIndirectVariable ( globalUse .getIndirection ( ) )
639
639
)
640
640
or
641
641
exists ( Ssa:: GlobalDef globalDef |
642
642
v = globalDef .getVariable ( ) and
643
643
n2 .( InitialGlobalValue ) .getGlobalDef ( ) = globalDef
644
644
|
645
- globalDef .getIndirectionIndex ( ) = 1 and
645
+ globalDef .getIndirection ( ) = 1 and
646
646
v = n1 .asVariable ( )
647
647
or
648
- v = n1 .asIndirectVariable ( globalDef .getIndirectionIndex ( ) )
648
+ v = n1 .asIndirectVariable ( globalDef .getIndirection ( ) )
649
649
)
650
650
)
651
651
}
You can’t perform that action at this time.
0 commit comments