-
Hi,
instead of (trapped)
beside handle the input piece by piece or line by line? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Have a look at |
Beta Was this translation helpful? Give feedback.
Have a look at
Instruction:flow_control()
andFlowControl
enum variantsUnconditionalBranch
,IndirectBranch
,Return
,Exception
and maybeInterrupt
. If it's one of them, the next instruction isn't necessarily code, could be data, so you should either stop disassembling or continue from the target (if it'sUnconditionalBranch
, seeInstruction:near_branch_target()
)