is_call and is_execute are jump instructions.

This commit is contained in:
Mark Thom
2017-12-10 12:31:01 -07:00
parent 37f4450c34
commit 9d944e2268

View File

@@ -756,6 +756,8 @@ impl ControlInstruction {
&ControlInstruction::ThrowExecute => true,
&ControlInstruction::Goto(_, _) => true,
&ControlInstruction::Proceed => true,
&ControlInstruction::IsCall(_, _) => true,
&ControlInstruction::IsExecute(_, _) => true,
_ => false
}
}