| Index: src/types.cc
|
| diff --git a/src/types.cc b/src/types.cc
|
| index a3a0ac9f001ff021f896437ce4c41c309a5f0b09..307dc9166c21049c7d50cc767d2d8acfcd4a7d8f 100644
|
| --- a/src/types.cc
|
| +++ b/src/types.cc
|
| @@ -344,7 +344,7 @@ double TypeImpl<Config>::BitsetType::Max(bitset bits) {
|
| DisallowHeapAllocation no_allocation;
|
| DCHECK(Is(bits, kNumber));
|
| const BitsetMin* mins = BitsetMins();
|
| - bool mz = SEMANTIC(bits & kMinusZero);
|
| + bool mz = bits & kMinusZero;
|
| if (BitsetType::Is(mins[BitsetMinsSize()-1].bits, bits)) {
|
| return +V8_INFINITY;
|
| }
|
|
|