Return true if `op` is the Merge for a while loop.
(op)
| 156 | |
| 157 | |
| 158 | def IsLoopMerge(op): |
| 159 | """Return true if `op` is the Merge for a while loop.""" |
| 160 | if IsMerge(op): |
| 161 | ctxt = op._get_control_flow_context() # pylint: disable=protected-access |
| 162 | return ctxt is not None and ctxt.IsWhileContext() and not IsCondMerge(op) |
| 163 | return False |
| 164 | |
| 165 | |
| 166 | def IsLoopConstantEnter(op): |
nothing calls this directly
no test coverage detected