mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
iteration tweak
This commit is contained in:
parent
65e3ab768f
commit
a45e0719b5
1 changed files with 3 additions and 1 deletions
|
@ -1527,8 +1527,10 @@ void ValueSet::doWidening(const CircleRange &newRange)
|
||||||
void ValueSet::looped(void)
|
void ValueSet::looped(void)
|
||||||
|
|
||||||
{
|
{
|
||||||
if (count > 2)
|
if (count >= 2)
|
||||||
count = 2; // Reset to point just after any widening
|
count = 2; // Reset to point just after any widening
|
||||||
|
else
|
||||||
|
count = 0; // Delay widening, if we haven't performed it yet
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Examine the input value sets that determine \b this set and decide if it
|
/// Examine the input value sets that determine \b this set and decide if it
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue