mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 910807 - IonMonkey: Avoid rectifyExponent() calls in unionWith, since it isn't needed, and the invariants it checks are temporarily invalid. r=nbp
This commit is contained in:
parent
9e6651b088
commit
2679859d05
@ -358,12 +358,12 @@ Range::unionWith(const Range *other)
|
||||
if (lower_infinite_ || other->lower_infinite_)
|
||||
makeLowerInfinite();
|
||||
else
|
||||
setLower(Min(lower_, other->lower_));
|
||||
setLowerInit(Min(lower_, other->lower_));
|
||||
|
||||
if (upper_infinite_ || other->upper_infinite_)
|
||||
makeUpperInfinite();
|
||||
else
|
||||
setUpper(Max(upper_, other->upper_));
|
||||
setUpperInit(Max(upper_, other->upper_));
|
||||
|
||||
decimal_ = decimal;
|
||||
max_exponent_ = max_exponent;
|
||||
|
Loading…
Reference in New Issue
Block a user