| Index: src/globals.h
|
| diff --git a/src/globals.h b/src/globals.h
|
| index 605c880790f6ade664e0cc19ec07b0fa8a44eb65..5c35068c8cb940812db509518217a14b0575e28b 100644
|
| --- a/src/globals.h
|
| +++ b/src/globals.h
|
| @@ -262,10 +262,12 @@ const int kRandomStateSize = 2 * kIntSize;
|
| const int kPointerSizeLog2 = 3;
|
| const intptr_t kIntptrSignBit = V8_INT64_C(0x8000000000000000);
|
| const uintptr_t kUintptrAllBitsSet = V8_UINT64_C(0xFFFFFFFFFFFFFFFF);
|
| +const bool kIs64BitArch = true;
|
| #else
|
| const int kPointerSizeLog2 = 2;
|
| const intptr_t kIntptrSignBit = 0x80000000;
|
| const uintptr_t kUintptrAllBitsSet = 0xFFFFFFFFu;
|
| +const bool kIs64BitArch = false;
|
| #endif
|
|
|
| const int kBitsPerByte = 8;
|
|
|