| Index: src/globals.h
|
| diff --git a/src/globals.h b/src/globals.h
|
| index d0c78d6e22b7e82a6289c69015fde7faa7d66f0e..cbe7abdf664bff14ed4d9d048027b424017dba87 100644
|
| --- a/src/globals.h
|
| +++ b/src/globals.h
|
| @@ -230,6 +230,9 @@ const int kPointerSize = sizeof(void*); // NOLINT
|
|
|
| const int kDoubleSizeLog2 = 3;
|
|
|
| +// Size of the state of a the random number generator.
|
| +const int kRandomStateSize = 2 * kIntSize;
|
| +
|
| #if V8_HOST_ARCH_64_BIT
|
| const int kPointerSizeLog2 = 3;
|
| const intptr_t kIntptrSignBit = V8_INT64_C(0x8000000000000000);
|
|
|