mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
Merge remote-tracking branch 'origin/GP-3312_Dan_fixLifespanIssueInEmulation'
This commit is contained in:
commit
ebd11da547
1 changed files with 4 additions and 1 deletions
|
@ -376,8 +376,11 @@ public abstract class AbstractBaseDBTraceDefinedUnitsView<T extends AbstractDBTr
|
|||
if (extending == null) {
|
||||
toScan = span;
|
||||
}
|
||||
else if (span.lmax() <= extending.getEndSnap()) {
|
||||
// we're shrinking or staying the same, so not possible to collide with others
|
||||
return span;
|
||||
}
|
||||
else {
|
||||
assert span.lmax() > extending.getEndSnap();
|
||||
toScan = span.withMin(extending.getEndSnap() + 1);
|
||||
}
|
||||
T truncateBy =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue