mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 02:09:44 +02:00
Documenting ifacedecomp
This commit is contained in:
parent
ab76cc6095
commit
6cc2d18349
9 changed files with 793 additions and 208 deletions
|
@ -574,7 +574,10 @@ int4 FlowBlock::getOutIndex(const FlowBlock *bl) const
|
|||
void FlowBlock::printHeader(ostream &s) const
|
||||
|
||||
{
|
||||
s << dec << index << ' ' << getStart() << '-' << getStop();
|
||||
s << dec << index;
|
||||
if (!getStart().isInvalid() && !getStop().isInvalid()) {
|
||||
s << ' ' << getStart() << '-' << getStop();
|
||||
}
|
||||
}
|
||||
|
||||
/// Recursively print out the hierarchical structure of \b this FlowBlock.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue