We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95a7d65 commit c04654dCopy full SHA for c04654d
swift/ql/lib/codeql/swift/dataflow/internal/DataFlowPrivate.qll
@@ -821,7 +821,9 @@ private module CaptureInput implements VariableCapture::InputSig {
821
Location getLocation() { result = super.getLocation() }
822
}
823
824
- BasicBlock getImmediateBasicBlockDominator(BasicBlock bb) { result.(B::BasicBlock).dominates(bb) }
+ BasicBlock getImmediateBasicBlockDominator(BasicBlock bb) {
825
+ result.(B::BasicBlock).immediatelyDominates(bb)
826
+ }
827
828
BasicBlock getABasicBlockSuccessor(BasicBlock bb) { result = bb.(B::BasicBlock).getASuccessor() }
829
0 commit comments