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 1af049e commit 0822cf0Copy full SHA for 0822cf0
sfs_generator/asm_bytecode.py
@@ -57,7 +57,7 @@ def to_plain(self) -> str:
57
"""
58
if is_push0(self.disasm, self.value):
59
return "PUSH0"
60
- return f"{self.disasm} {str(self.value)}" if self.value is not None else self.disasm
+ return f"{self.disasm} {str(self.value)}" if self.value is not None and "JUMP" not in self.disasm else self.disasm
61
62
def to_plain_with_byte_number(self) -> str:
63
0 commit comments