Skip to content

Commit 8a569da

Browse files
committed
C++: Fix comments.
1 parent 490156d commit 8a569da

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/SsaInternals.qll

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)