We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c82559 commit e4d929cCopy full SHA for e4d929c
xdis/disasm.py
@@ -241,6 +241,9 @@ def disco_loop(
241
elif is_unusual_bytecode:
242
if hasattr(co, "graal_instr_str") and co.graal_instr_str:
243
real_out.write(co.graal_instr_str)
244
+ if asm_format in ("extended_bytes", "bytes"):
245
+ real_out.write("instruction bytecode:\n%s\n" % co.co_code)
246
+
247
else:
248
if co.co_name == "??":
249
real_out.write("\n# Instruction disassembly not supported here.\n")
0 commit comments