Dataflow: Sync DataFlowImplCommon

This commit is contained in:
Rasmus Wriedt Larsen
2022-05-24 17:39:23 +02:00
parent c9a833fc07
commit 911ddb9b2c
5 changed files with 10 additions and 10 deletions

View File

@@ -80,8 +80,8 @@ predicate accessPathCostLimits(int apLimit, int tupleLimit) {
pragma[noinline]
predicate argumentPositionMatch(DataFlowCall call, ArgNode arg, ParameterPosition ppos) {
exists(ArgumentPosition apos |
arg.argumentOf(call, apos) and
parameterMatch(ppos, apos)
arg.argumentOf(call, pragma[only_bind_into](apos)) and
parameterMatch(ppos, pragma[only_bind_into](apos))
)
}

View File

@@ -80,8 +80,8 @@ predicate accessPathCostLimits(int apLimit, int tupleLimit) {
pragma[noinline]
predicate argumentPositionMatch(DataFlowCall call, ArgNode arg, ParameterPosition ppos) {
exists(ArgumentPosition apos |
arg.argumentOf(call, apos) and
parameterMatch(ppos, apos)
arg.argumentOf(call, pragma[only_bind_into](apos)) and
parameterMatch(ppos, pragma[only_bind_into](apos))
)
}