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 a911ab3 commit 4ae20c7Copy full SHA for 4ae20c7
src/binexport/basic_block.py
@@ -62,7 +62,7 @@ def __hash__(self) -> int:
62
return hash(self.addr)
63
64
def __str__(self) -> str:
65
- return "\n".join(str(i) for i in self.values())
+ return "\n".join(str(i) for i in self.instructions.values())
66
67
def __repr__(self) -> str:
68
return "<%s:0x%x>" % (type(self).__name__, self.addr)
0 commit comments