mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
Ensure there is always space after the opcode (some opcode names are longer than 30 characters now)
This commit is contained in:
parent
ab6aaf6da3
commit
7560149895
1 changed files with 1 additions and 1 deletions
|
|
@ -343,7 +343,7 @@ void bc_disasm(std::ostream& pyc_output, PycRef<PycCode> code, PycModule* mod,
|
|||
|
||||
for (int i=0; i<indent; i++)
|
||||
pyc_output << " ";
|
||||
formatted_print(pyc_output, "%-7d %-30s", start_pos, Pyc::OpcodeName(opcode));
|
||||
formatted_print(pyc_output, "%-7d %-30s ", start_pos, Pyc::OpcodeName(opcode));
|
||||
|
||||
if (opcode >= Pyc::PYC_HAVE_ARG) {
|
||||
switch (opcode) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue