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 {
407407 */
408408 cached
409409 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`.
411411 defUseFlow ( nodeFrom , nodeTo )
412412 or
413- // Def-use flow from a `StoreNode` to an `OperandNode` .
413+ // Def-use flow from a `StoreNode`.
414414 fromStoreNode ( nodeFrom , nodeTo )
415415 or
416- // Use-use flow from a `ReadNode` to an `OperandNode`
416+ // Use-use flow from a `ReadNode`.
417417 fromReadNode ( nodeFrom , nodeTo )
418418 or
419419 fromPhiNode ( nodeFrom , nodeTo )
@@ -521,7 +521,7 @@ private module Cached {
521521 flowOutOfAddressStep ( arith .getAUse ( ) , nTo )
522522 )
523523 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.
525525 exists (
526526 CallInstruction call , int index , DataFlow:: FunctionInput input ,
527527 DataFlow:: FunctionOutput output
You can’t perform that action at this time.
0 commit comments