Skip to content

Commit 6e86945

Browse files
committed
Shared: remove pragma[inline] implied by bindingset
1 parent c7e892f commit 6e86945

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

shared/dataflow/codeql/dataflow/internal/DataFlowImpl.qll

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,6 @@ module MakeImpl<InputSig Lang> {
304304

305305
/** Provides the relevant barriers for a step from `node1` to `node2`. */
306306
bindingset[node1, node2]
307-
pragma[inline]
308307
private predicate stepFilter(NodeEx node1, NodeEx node2) {
309308
not outBarrier(node1) and
310309
not inBarrier(node2) and
@@ -314,7 +313,6 @@ module MakeImpl<InputSig Lang> {
314313

315314
/** Provides the relevant barriers for a step from `node1,state1` to `node2,state2`, including stateless barriers for `node1` to `node2`. */
316315
bindingset[node1, state1, node2, state2]
317-
pragma[inline]
318316
private predicate stateStepFilter(NodeEx node1, FlowState state1, NodeEx node2, FlowState state2) {
319317
stepFilter(node1, node2) and
320318
not outBarrier(node1, state1) and

0 commit comments

Comments
 (0)