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 @@ -407,13 +407,13 @@ private module Cached {
407
407
*/
408
408
cached
409
409
predicate ssaFlow ( Node nodeFrom , Node nodeTo ) {
410
- // Def-use/use-use flow from an `InstructionNode` to an `OperandNode` .
410
+ // Def-use/use-use flow from an `InstructionNode`.
411
411
defUseFlow ( nodeFrom , nodeTo )
412
412
or
413
- // Def-use flow from a `StoreNode` to an `OperandNode` .
413
+ // Def-use flow from a `StoreNode`.
414
414
fromStoreNode ( nodeFrom , nodeTo )
415
415
or
416
- // Use-use flow from a `ReadNode` to an `OperandNode`
416
+ // Use-use flow from a `ReadNode`.
417
417
fromReadNode ( nodeFrom , nodeTo )
418
418
or
419
419
fromPhiNode ( nodeFrom , nodeTo )
@@ -521,7 +521,7 @@ private module Cached {
521
521
flowOutOfAddressStep ( arith .getAUse ( ) , nTo )
522
522
)
523
523
or
524
- // Flow through a modelled function that has parameter -> return value flow.
524
+ // Flow through a modeled function that has parameter -> return value flow.
525
525
exists (
526
526
CallInstruction call , int index , DataFlow:: FunctionInput input ,
527
527
DataFlow:: FunctionOutput output
You can’t perform that action at this time.
0 commit comments