mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
Default for maximum number of instructions
This commit is contained in:
parent
d9bd93c36b
commit
a8dcc7266b
8 changed files with 34 additions and 11 deletions
|
@ -360,10 +360,10 @@ static void IfcFollowFlow(ostream &s,IfaceDecompData *dcp,const Address &offset,
|
|||
if (size==0) {
|
||||
Address baddr(dcp->fd->getAddress().getSpace(),0);
|
||||
Address eaddr(dcp->fd->getAddress().getSpace(),dcp->fd->getAddress().getSpace()->getHighest());
|
||||
dcp->fd->followFlow(baddr,eaddr,0);
|
||||
dcp->fd->followFlow(baddr,eaddr);
|
||||
}
|
||||
else
|
||||
dcp->fd->followFlow(offset,offset+size,0);
|
||||
dcp->fd->followFlow(offset,offset+size);
|
||||
s << "Function " << dcp->fd->getName() << ": ";
|
||||
dcp->fd->getAddress().printRaw(s);
|
||||
s << endl;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue