mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
Show jump target on FOR_ITER instructions
This commit is contained in:
parent
05a32e7bf5
commit
35e74d0e6e
1 changed files with 1 additions and 1 deletions
|
|
@ -164,7 +164,7 @@ bool Pyc::IsJumpOffsetArg(int opcode)
|
|||
return (opcode == Pyc::JUMP_FORWARD_A) || (opcode == Pyc::JUMP_IF_FALSE_A) ||
|
||||
(opcode == Pyc::JUMP_IF_TRUE_A) || (opcode == Pyc::SETUP_LOOP_A) ||
|
||||
(opcode == Pyc::SETUP_FINALLY_A) || (opcode == Pyc::SETUP_EXCEPT_A) ||
|
||||
(opcode == Pyc::FOR_LOOP_A);
|
||||
(opcode == Pyc::FOR_LOOP_A) || (opcode == Pyc::FOR_ITER_A);
|
||||
}
|
||||
|
||||
bool Pyc::IsCompareArg(int opcode)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue