From 7680bef29f25c6c26135f06dc6a8601680a45f13 Mon Sep 17 00:00:00 2001 From: Xinlong Hu Date: Mon, 4 Aug 2025 23:45:03 -0500 Subject: [PATCH] Extending JumpTemplate to 3.12 --- pylingual/control_flow_reconstruction/templates/Block.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylingual/control_flow_reconstruction/templates/Block.py b/pylingual/control_flow_reconstruction/templates/Block.py index 18a6b8f..5cb0f89 100644 --- a/pylingual/control_flow_reconstruction/templates/Block.py +++ b/pylingual/control_flow_reconstruction/templates/Block.py @@ -54,7 +54,7 @@ class RemoveUnreachable(ControlFlowTemplate): return node -@register_template(0, 0, (3, 13)) +@register_template(0, 0, (3, 12), (3, 13)) class JumpTemplate(ControlFlowTemplate): template = T( body=~N("jump", None).with_cond(without_instructions("CLEANUP_THROW")),