mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out changeset a4a56914be72 (bug 1024836) because the upstream LLVM bug is now fixed.
Upstream bug: http://llvm.org/bugs/show_bug.cgi?id=20008
This commit is contained in:
parent
abcc1b2c2a
commit
0bb694affd
@ -916,9 +916,9 @@ Range::abs(TempAllocator &alloc, const Range *op)
|
||||
int32_t l = op->lower_;
|
||||
int32_t u = op->upper_;
|
||||
|
||||
return new(alloc) Range(Max(Max(int32_t(0), l), u == INT32_MIN ? int32_t(INT32_MAX) : -u),
|
||||
return new(alloc) Range(Max(Max(int32_t(0), l), u == INT32_MIN ? INT32_MAX : -u),
|
||||
true,
|
||||
Max(Max(int32_t(0), u), l == INT32_MIN ? int32_t(INT32_MAX) : -l),
|
||||
Max(Max(int32_t(0), u), l == INT32_MIN ? INT32_MAX : -l),
|
||||
op->hasInt32Bounds() && l != INT32_MIN,
|
||||
op->canHaveFractionalPart_,
|
||||
op->max_exponent_);
|
||||
|
Loading…
Reference in New Issue
Block a user