| Index: src/api.cc
|
| diff --git a/src/api.cc b/src/api.cc
|
| index 2deab773bfdf420c1128a6a3051a985f529d8085..18acc0d885b0d2a680c26d87893a0ef8524bd77e 100644
|
| --- a/src/api.cc
|
| +++ b/src/api.cc
|
| @@ -4309,7 +4309,7 @@ template<> struct OneByteMask<4> {
|
| static const uint32_t value = 0xFF00FF00;
|
| };
|
| template<> struct OneByteMask<8> {
|
| - static const uint64_t value = 0xFF00FF00FF00FF00;
|
| + static const uint64_t value = V8_2PART_UINT64_C(0xFF00FF00, FF00FF00);
|
| };
|
| static const uintptr_t kOneByteMask = OneByteMask<sizeof(uintptr_t)>::value;
|
| static const uintptr_t kAlignmentMask = sizeof(uintptr_t) - 1;
|
|
|