-
Binary Ninja Version Describe the bug To Reproduce
Expected behavior Version and Platform (required):
Additional context |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Binary Ninja's definition of back edge doesn't require the ancestor node to dominate the descendent. The field is computed and used in internal processing of basic blocks, so not easily changed. If you want the more strict definition, you can simply check that |
Beta Was this translation helpful? Give feedback.
Binary Ninja's definition of back edge doesn't require the ancestor node to dominate the descendent. The field is computed and used in internal processing of basic blocks, so not easily changed. If you want the more strict definition, you can simply check that
edge.target in edge.source.dominators
.