From 9d944e2268329b97658a510092e8998c9533c679 Mon Sep 17 00:00:00 2001 From: Mark Thom Date: Sun, 10 Dec 2017 12:31:01 -0700 Subject: [PATCH] is_call and is_execute are jump instructions. --- src/prolog/ast.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/prolog/ast.rs b/src/prolog/ast.rs index bf5e467e..a8c9f376 100644 --- a/src/prolog/ast.rs +++ b/src/prolog/ast.rs @@ -756,6 +756,8 @@ impl ControlInstruction { &ControlInstruction::ThrowExecute => true, &ControlInstruction::Goto(_, _) => true, &ControlInstruction::Proceed => true, + &ControlInstruction::IsCall(_, _) => true, + &ControlInstruction::IsExecute(_, _) => true, _ => false } } -- 2.54.0