mirror of
https://github.com/github/codeql.git
synced 2026-01-06 03:00:24 +01:00
10 lines
237 B
Plaintext
10 lines
237 B
Plaintext
|
|
import python
|
|
|
|
select count(BasicBlock b1, BasicBlock b2
|
|
| b1 = b2.getImmediateDominator+() and not b1.strictlyDominates(b2)
|
|
),
|
|
count(BasicBlock b1, BasicBlock b2
|
|
| not b1 = b2.getImmediateDominator+() and b1.strictlyDominates(b2)
|
|
)
|