fhdl/tracer: support BUILD_LIST opcode

This commit is contained in:
Sebastien Bourdeauducq 2012-09-09 18:53:24 +02:00
parent 910c350021
commit 589251fffd
1 changed files with 2 additions and 0 deletions

View File

@ -23,6 +23,8 @@ def get_var_name(frame):
index += 3 index += 3
elif opc == "DUP_TOP": elif opc == "DUP_TOP":
index += 1 index += 1
elif opc == "BUILD_LIST":
index += 3
else: else:
return None return None