Skip to content

Commit ff94f08

Browse files
committed
Data flow: Store/load matching in pruning stage 3
1 parent ec9f533 commit ff94f08

File tree

3 files changed

+526
-28
lines changed

3 files changed

+526
-28
lines changed

shared/dataflow/codeql/dataflow/DataFlow.qll

+3-2
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,7 @@ signature module InputSig<LocationSig Location> {
265265
*/
266266
predicate isUnreachableInCall(NodeRegion nr, DataFlowCall call);
267267

268+
/** Gets the access path limit. A maximum limit of 5 is allowed. */
268269
default int accessPathLimit() { result = 5 }
269270

270271
/**
@@ -401,7 +402,7 @@ module Configs<LocationSig Location, InputSig<Location> Lang> {
401402
*/
402403
default int fieldFlowBranchLimit() { result = 2 }
403404

404-
/** Gets the access path limit. */
405+
/** Gets the access path limit. A maximum limit of 5 is allowed. */
405406
default int accessPathLimit() { result = Lang::accessPathLimit() }
406407

407408
/**
@@ -523,7 +524,7 @@ module Configs<LocationSig Location, InputSig<Location> Lang> {
523524
*/
524525
default int fieldFlowBranchLimit() { result = 2 }
525526

526-
/** Gets the access path limit. */
527+
/** Gets the access path limit. A maximum limit of 5 is allowed. */
527528
default int accessPathLimit() { result = Lang::accessPathLimit() }
528529

529530
/**

0 commit comments

Comments
 (0)